glIndexPointer function

void glIndexPointer(
  1. int type,
  2. int stride,
  3. Pointer<Void> pointer
)
GLAPI void GLAPIENTRY glIndexPointer (GLenum type, GLsizei stride, const void *pointer)

Implementation

void glIndexPointer(int type, int stride, Pointer<Void> pointer) {
  final glIndexPointerLookupFunction = libGL.lookupFunction<
      Void Function(Uint32 type, Uint32 stride, Pointer<Void> pointer),
      void Function(
          int type, int stride, Pointer<Void> pointer)>('glIndexPointer');
  return glIndexPointerLookupFunction(type, stride, pointer);
}