My current implementation of removing vertices from the buffer is by copying the portions of the buffer before and after the section of vertices I want to remove, into a new buffer.
However this process becomes very slow when the buffer size increases.
So is there a way to just remove the vertices and have the vertices after them take their place in the buffer?