glSecondaryColor3s function opengl_glext

void glSecondaryColor3s(
  1. int red,
  2. int green,
  3. int blue
)
GLAPI void APIENTRY glSecondaryColor3s (GLshort red, GLshort green, GLshort blue)

Implementation

void glSecondaryColor3s(int red, int green, int blue) {
  final glSecondaryColor3sAsFunction = _glSecondaryColor3s
      .cast<NativeFunction<Void Function(Int16 red, Int16 green, Int16 blue)>>()
      .asFunction<void Function(int red, int green, int blue)>();
  return glSecondaryColor3sAsFunction(red, green, blue);
}