glElementPointerApple function

void glElementPointerApple(
  1. int type,
  2. Pointer<Void> pointer
)
define glElementPointerAPPLE GLEW_GET_FUN(__glewElementPointerAPPLE)
GLEW_FUN_EXPORT PFNGLELEMENTPOINTERAPPLEPROC __glewElementPointerAPPLE
typedef void (GLAPIENTRY * PFNGLELEMENTPOINTERAPPLEPROC) (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);
}