glClearColor function
GLAPI void GLAPIENTRY glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)
Implementation
void glClearColor(double red, double green, double blue, double alpha) {
final glClearColorLookupFunction = libGL.lookupFunction<
Void Function(Float red, Float green, Float blue, Float alpha),
void Function(
double red, double green, double blue, double alpha)>('glClearColor');
return glClearColorLookupFunction(red, green, blue, alpha);
}