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