glColor4us function
GLAPI void GLAPIENTRY glColor4us (GLushort red, GLushort green, GLushort blue, GLushort alpha)
Implementation
void glColor4us(int red, int green, int blue, int alpha) {
final glColor4usLookupFunction = libGL.lookupFunction<
Void Function(Uint16 red, Uint16 green, Uint16 blue, Uint16 alpha),
void Function(int red, int green, int blue, int alpha)>('glColor4us');
return glColor4usLookupFunction(red, green, blue, alpha);
}