Hi,
I have a simulation that uses OpenGL for drawing. While it is running, I would like to plot some things on top of my simulation in real time, but every iteration I only want to add few lines to that graph, instead of always re-drawing it from scratch (that would be too costly).
How could I create some surface to which I can always add, that does not get erased, and how could I overlay it on top of my simulation?
Thank you!