glSecondaryColor3fExt function opengl_glext

void glSecondaryColor3fExt(
  1. double red,
  2. double green,
  3. double blue
)
GLAPI void APIENTRY glSecondaryColor3fEXT (GLfloat red, GLfloat green, GLfloat blue)

Implementation

void glSecondaryColor3fExt(double red, double green, double blue) {
  final glSecondaryColor3fExtAsFunction = _glSecondaryColor3fExt
      .cast<NativeFunction<Void Function(Float red, Float green, Float blue)>>()
      .asFunction<void Function(double red, double green, double blue)>();
  return glSecondaryColor3fExtAsFunction(red, green, blue);
}