glColor3b function
GLAPI void GLAPIENTRY glColor3b (GLbyte red, GLbyte green, GLbyte blue)
Implementation
void glColor3b(int red, int green, int blue) {
final glColor3bLookupFunction = libGL.lookupFunction<
Void Function(Int8 red, Int8 green, Int8 blue),
void Function(int red, int green, int blue)>('glColor3b');
return glColor3bLookupFunction(red, green, blue);
}