glColor3s function

void glColor3s(
  1. int red,
  2. int green,
  3. int blue
)
GLAPI void GLAPIENTRY glColor3s (GLshort red, GLshort green, GLshort blue)

Implementation

void glColor3s(int red, int green, int blue) {
  final glColor3sLookupFunction = libGL.lookupFunction<
      Void Function(Int16 red, Int16 green, Int16 blue),
      void Function(int red, int green, int blue)>('glColor3s');
  return glColor3sLookupFunction(red, green, blue);
}