glElementPointerAti function opengl_glext
GLAPI void APIENTRY glElementPointerATI (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);
}