Hello Guest

OpenGL-ES 2.0 glCopyBufferSubData alternative

  • 0 Replies
  • 1185 Views
OpenGL-ES 2.0 glCopyBufferSubData alternative
« on: August 18, 2022, 11:14:46 »
I used glCopyBufferSubData() quite a lot. My vertex array buffers need to grow from time to time, and it was a great way to increase the size of the buffer without involving CPU as a middleman to copy the data.

Is there any alternative? How would you even go about copying buffer data? do you actually need to read it from Vram into some buffer array and then write it into another VBO?