glClearColor function

void glClearColor(
  1. double red,
  2. double green,
  3. double blue,
  4. double alpha,
)
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);
}