glSecondaryColor3fExt function opengl_glext
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);
}