Mesh Primitive Type

Started by
0 comments, last by Muhammad Haggag 19 years, 3 months ago
Is there anyway you can get meshes to use triangle strips instead of triangle lists. As rendering with a mesh seems to be inefficient at this with regards to speed and memory usage! Reading some papers published from Nvidia the say you should ONLY ever writ data in stripes anything else just runs slow (in comparison) And seeing as that made the cads I tend to believe them. Thanks.
Advertisement
D3DXConvertMeshSubsetToSingleStrip and D3DXConvertMeshSubsetToStrips.

Quote:Reading some papers published from Nvidia the say you should ONLY ever writ data in stripes anything else just runs slow (in comparison) And seeing as that made the cads I tend to believe them.

If your batches can be stripified without too many degenerates, and still maintain a decent batch size, then strips are good. However, that's not possible most of the time.

This topic is closed to new replies.

Advertisement