Help => Graphics => Topic started by: smurf on November 19, 2024, 04:40:51 pm
Title: Drawing a subset of a vertex array?
Post by: smurf on November 19, 2024, 04:40:51 pm
I have a particle system where sparks burn out over time. Instead of creating a brand new VertexArray every frame with the burnt-out particles removed, I wanted to re-use the same VertexArray and just shift things around so that the burnt-out ones are on the end, and then not draw them by passing a count parameter to the Draw function. The idea is by not creating a new VertexArray every frame this should be much more performant.
But it seems the window.Draw function does not quite give me the overload I need.