void
glClearColorIiExt(
 - int red, 
- int green, 
- int blue, 
- int alpha, 
) 
    
  GLAPI void APIENTRY glClearColorIiEXT (GLint red, GLint green, GLint blue, GLint alpha)
 
    
  Implementation
  void glClearColorIiExt(int red, int green, int blue, int alpha) {
  final glClearColorIiExtAsFunction = _glClearColorIiExt
      .cast<
        NativeFunction<
          Void Function(Int32 red, Int32 green, Int32 blue, Int32 alpha)
        >
      >()
      .asFunction<void Function(int red, int green, int blue, int alpha)>();
  return glClearColorIiExtAsFunction(red, green, blue, alpha);
}