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