glDeleteMemoryObjectsExt function opengl_glext
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);
}