glMatrixIndexuivArb function opengl_glext

void glMatrixIndexuivArb(
  1. int size,
  2. Pointer<Uint32> indices
)
GLAPI void APIENTRY glMatrixIndexuivARB (GLint size, const GLuint *indices)

Implementation

void glMatrixIndexuivArb(int size, Pointer<Uint32> indices) {
  final glMatrixIndexuivArbAsFunction = _glMatrixIndexuivArb
      .cast<
        NativeFunction<Void Function(Int32 size, Pointer<Uint32> indices)>
      >()
      .asFunction<void Function(int size, Pointer<Uint32> indices)>();
  return glMatrixIndexuivArbAsFunction(size, indices);
}