Tagged Questions

6
votes
4answers
1k views

Multiple meshes in one vertex buffer?

Do I need to use one vertex buffer per mesh, or can I store multiple meshes in one vertex buffer? If so, should I do it, and how would I do it?
2
votes
1answer
164 views

Memory management for vertex buffer data

Assume that I need to render static picture (100 stars). I generate star data (position, color, size) to std::vector stars; Then I create a class for D3D rendering, which consist a buffer: ...