glMatrixIndexPointerArb function opengl_glext

void glMatrixIndexPointerArb(
  1. int size,
  2. int type,
  3. int stride,
  4. Pointer<NativeType> pointer,
)
GLAPI void APIENTRY glMatrixIndexPointerARB (GLint size, GLenum type, GLsizei stride, const void *pointer)

Implementation

void glMatrixIndexPointerArb(
  int size,
  int type,
  int stride,
  Pointer<NativeType> pointer,
) {
  final glMatrixIndexPointerArbAsFunction = _glMatrixIndexPointerArb
      .cast<
        NativeFunction<
          Void Function(
            Int32 size,
            Uint32 type,
            Uint32 stride,
            Pointer<NativeType> pointer,
          )
        >
      >()
      .asFunction<
        void Function(
          int size,
          int type,
          int stride,
          Pointer<NativeType> pointer,
        )
      >();
  return glMatrixIndexPointerArbAsFunction(size, type, stride, pointer);
}