glDeleteMemoryObjectsExt function opengl_glext

void glDeleteMemoryObjectsExt(
  1. int n,
  2. Pointer<Uint32> memoryObjects
)
GLAPI void APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects)

Implementation

void glDeleteMemoryObjectsExt(int n, Pointer<Uint32> memoryObjects) {
  final glDeleteMemoryObjectsExtAsFunction = _glDeleteMemoryObjectsExt
      .cast<
        NativeFunction<Void Function(Uint32 n, Pointer<Uint32> memoryObjects)>
      >()
      .asFunction<void Function(int n, Pointer<Uint32> memoryObjects)>();
  return glDeleteMemoryObjectsExtAsFunction(n, memoryObjects);
}