glIndexPointerExt function opengl_glext

void glIndexPointerExt(
  1. int type,
  2. int stride,
  3. int count,
  4. Pointer<Void> pointer,
)
GLAPI void APIENTRY glIndexPointerEXT (GLenum type, GLsizei stride, GLsizei count, const void *pointer)

Implementation

void glIndexPointerExt(int type, int stride, int count, Pointer<Void> pointer) {
  final glIndexPointerExtAsFunction = _glIndexPointerExt
      .cast<
        NativeFunction<
          Void Function(
            Uint32 type,
            Int32 stride,
            Int32 count,
            Pointer<Void> pointer,
          )
        >
      >()
      .asFunction<
        void Function(int type, int stride, int count, Pointer<Void> pointer)
      >();
  return glIndexPointerExtAsFunction(type, stride, count, pointer);
}