glColorMaskIndexedExt function opengl_glext
GLAPI void APIENTRY glColorMaskIndexedEXT (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a)
Implementation
void glColorMaskIndexedExt(int index, int r, int g, int b, int a) {
final glColorMaskIndexedExtAsFunction = _glColorMaskIndexedExt
.cast<
NativeFunction<
Void Function(Uint32 index, Int32 r, Int32 g, Int32 b, Int32 a)
>
>()
.asFunction<void Function(int index, int r, int g, int b, int a)>();
return glColorMaskIndexedExtAsFunction(index, r, g, b, a);
}