glColor3s function opengl

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 glColor3sAsFunction = _glColor3s
      .cast<NativeFunction<Void Function(Int16 red, Int16 green, Int16 blue)>>()
      .asFunction<void Function(int red, int green, int blue)>();
  return glColor3sAsFunction(red, green, blue);
}