glMatrixIndexuivArb function opengl_glext
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);
}