glElementPointerAti function

void glElementPointerAti(
  1. int type,
  2. Pointer<Void> pointer
)
define glElementPointerATI GLEW_GET_FUN(__glewElementPointerATI)
GLEW_FUN_EXPORT PFNGLELEMENTPOINTERATIPROC __glewElementPointerATI
typedef void (GLAPIENTRY * PFNGLELEMENTPOINTERATIPROC) (GLenum type, const void *pointer)

Implementation

void glElementPointerAti(int type, Pointer<Void> pointer) {
  final glElementPointerAtiAsFunction = _glElementPointerAti
      .cast<NativeFunction<Void Function(Uint32 type, Pointer<Void> pointer)>>()
      .asFunction<void Function(int type, Pointer<Void> pointer)>();
  return glElementPointerAtiAsFunction(type, pointer);
}