glIndexPointer function
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);
}