glColor3ub function
GLAPI void GLAPIENTRY glColor3ub (GLubyte red, GLubyte green, GLubyte blue)
Implementation
void glColor3ub(int red, int green, int blue) {
final glColor3ubLookupFunction = libGL.lookupFunction<
Void Function(Uint8 red, Uint8 green, Uint8 blue),
void Function(int red, int green, int blue)>('glColor3ub');
return glColor3ubLookupFunction(red, green, blue);
}