glColor4b function

void glColor4b(
  1. int red,
  2. int green,
  3. int blue,
  4. int alpha,
)
GLAPI void GLAPIENTRY glColor4b (GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha)

Implementation

void glColor4b(int red, int green, int blue, int alpha) {
  final glColor4bLookupFunction = libGL.lookupFunction<
      Void Function(Int8 red, Int8 green, Int8 blue, Int8 alpha),
      void Function(int red, int green, int blue, int alpha)>('glColor4b');
  return glColor4bLookupFunction(red, green, blue, alpha);
}