glElementPointerApple function opengl_glext
GLAPI void APIENTRY glElementPointerAPPLE (GLenum type, const void *pointer)
Implementation
void glElementPointerApple(int type, Pointer<Void> pointer) {
final glElementPointerAppleAsFunction = _glElementPointerApple
.cast<NativeFunction<Void Function(Uint32 type, Pointer<Void> pointer)>>()
.asFunction<void Function(int type, Pointer<Void> pointer)>();
return glElementPointerAppleAsFunction(type, pointer);
}