void
glClearColorIuiExt(
- int red,
- int green,
- int blue,
- 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);
}