glColor3ub function

void glColor3ub(
  1. int red,
  2. int green,
  3. int blue
)
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);
}