glColor3us function

void glColor3us(
  1. int red,
  2. int green,
  3. int blue
)
GLAPI void GLAPIENTRY glColor3us (GLushort red, GLushort green, GLushort blue)

Implementation

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