Hi, i am using DirectX9 to make a game.
I am trying to combine the vertex buffers i have.
Is there some way possible that i can add vertices, and later some more vertices ?
Vertex*vertex = new Vertex[ size ];
then later i have the same code again.
Vertex*vertex = new Vertex[ size ];
Then finally i like to add all that to the vertexbuffer, how do i align all those vertices without the need to copy ?
thanks