glFlushVertexArrayRangeApple function opengl_glext

void glFlushVertexArrayRangeApple(
  1. int length,
  2. Pointer<Void> pointer
)
GLAPI void APIENTRY glFlushVertexArrayRangeAPPLE (GLsizei length, void *pointer)

Implementation

void glFlushVertexArrayRangeApple(int length, Pointer<Void> pointer) {
  final glFlushVertexArrayRangeAppleAsFunction = _glFlushVertexArrayRangeApple
      .cast<
        NativeFunction<Void Function(Int32 length, Pointer<Void> pointer)>
      >()
      .asFunction<void Function(int length, Pointer<Void> pointer)>();
  return glFlushVertexArrayRangeAppleAsFunction(length, pointer);
}