glClearColor function opengl
GLAPI void GLAPIENTRY glClearColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha )
Implementation
void glClearColor(double red, double green, double blue, double alpha) {
final glClearColorAsFunction = _glClearColor
.cast<
NativeFunction<
Void Function(Float red, Float green, Float blue, Float alpha)
>
>()
.asFunction<
void Function(double red, double green, double blue, double alpha)
>();
return glClearColorAsFunction(red, green, blue, alpha);
}