glColorMaskIndexedExt function opengl_glext

void glColorMaskIndexedExt(
  1. int index,
  2. int r,
  3. int g,
  4. int b,
  5. int a,
)
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);
}