glMatrixIndexubvArb function opengl_glext

void glMatrixIndexubvArb(
  1. int size,
  2. Pointer<Uint8> indices
)
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);
}