glSecondaryColor3usExt function opengl_glext

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

Implementation

void glSecondaryColor3usExt(int red, int green, int blue) {
  final glSecondaryColor3usExtAsFunction = _glSecondaryColor3usExt
      .cast<
        NativeFunction<Void Function(Uint16 red, Uint16 green, Uint16 blue)>
      >()
      .asFunction<void Function(int red, int green, int blue)>();
  return glSecondaryColor3usExtAsFunction(red, green, blue);
}