glMatrixIndexubvArb function opengl_glext
GLAPI void APIENTRY glMatrixIndexubvARB (GLint size, const GLubyte *indices)
Implementation
void glMatrixIndexubvArb(int size, Pointer<Uint8> indices) {
final glMatrixIndexubvArbAsFunction = _glMatrixIndexubvArb
.cast<NativeFunction<Void Function(Int32 size, Pointer<Uint8> indices)>>()
.asFunction<void Function(int size, Pointer<Uint8> indices)>();
return glMatrixIndexubvArbAsFunction(size, indices);
}