glSecondaryColor3us function opengl_glext

void glSecondaryColor3us(
  1. int red,
  2. int green,
  3. int blue
)
GLAPI void APIENTRY glSecondaryColor3us (GLushort red, GLushort green, GLushort blue)

Implementation

void glSecondaryColor3us(int red, int green, int blue) {
  final glSecondaryColor3usAsFunction = _glSecondaryColor3us
      .cast<
        NativeFunction<Void Function(Uint16 red, Uint16 green, Uint16 blue)>
      >()
      .asFunction<void Function(int red, int green, int blue)>();
  return glSecondaryColor3usAsFunction(red, green, blue);
}