glSecondaryColor3f function opengl_glext
GLAPI void APIENTRY glSecondaryColor3f (GLfloat red, GLfloat green, GLfloat blue)
Implementation
void glSecondaryColor3f(double red, double green, double blue) {
final glSecondaryColor3fAsFunction = _glSecondaryColor3f
.cast<NativeFunction<Void Function(Float red, Float green, Float blue)>>()
.asFunction<void Function(double red, double green, double blue)>();
return glSecondaryColor3fAsFunction(red, green, blue);
}