glColor4us function

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

Implementation

void glColor4us(int red, int green, int blue, int alpha) {
  final glColor4usLookupFunction = libGL.lookupFunction<
      Void Function(Uint16 red, Uint16 green, Uint16 blue, Uint16 alpha),
      void Function(int red, int green, int blue, int alpha)>('glColor4us');
  return glColor4usLookupFunction(red, green, blue, alpha);
}