glSecondaryColor3sExt function opengl_glext

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

Implementation

void glSecondaryColor3sExt(int red, int green, int blue) {
  final glSecondaryColor3sExtAsFunction = _glSecondaryColor3sExt
      .cast<NativeFunction<Void Function(Int16 red, Int16 green, Int16 blue)>>()
      .asFunction<void Function(int red, int green, int blue)>();
  return glSecondaryColor3sExtAsFunction(red, green, blue);
}