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