glBlendColorExt function opengl_glext
GLAPI void APIENTRY glBlendColorEXT (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha)
Implementation
void glBlendColorExt(double red, double green, double blue, double alpha) {
final glBlendColorExtAsFunction = _glBlendColorExt
.cast<
NativeFunction<
Void Function(Float red, Float green, Float blue, Float alpha)
>
>()
.asFunction<
void Function(double red, double green, double blue, double alpha)
>();
return glBlendColorExtAsFunction(red, green, blue, alpha);
}