glClearColorIuiExt function opengl_glext

void glClearColorIuiExt(
  1. int red,
  2. int green,
  3. int blue,
  4. int alpha,
)
GLAPI void APIENTRY glClearColorIuiEXT (GLuint red, GLuint green, GLuint blue, GLuint alpha)

Implementation

void glClearColorIuiExt(int red, int green, int blue, int alpha) {
  final glClearColorIuiExtAsFunction = _glClearColorIuiExt
      .cast<
        NativeFunction<
          Void Function(Uint32 red, Uint32 green, Uint32 blue, Uint32 alpha)
        >
      >()
      .asFunction<void Function(int red, int green, int blue, int alpha)>();
  return glClearColorIuiExtAsFunction(red, green, blue, alpha);
}