Terrain Triangle Primitive Types

Started by
1 comment, last by Shmiznac 21 years, 1 month ago
I''ve decided to implement a GeoMipmapped terrain scheme, but I''m having trouble deciding on what type of triangle primitive to use. Most of the implementations I''ve seen use Triangle Fans, which seems a bit inefficient to me, because you''ll have to make multiple rendering calls per patch for each fan, unless your patches are very small (5x5). Using plain triangles would use a lot of redundant index data, but would only require one rendering call per patch. However, I''m wondering about the difficulties of fixing cracking with triangles. Using triangle strips would probably be the most efficient method, but trying to fix cracking sounds even more difficult than with plain triangles. Anyone got ideas?
Shmiznac
Advertisement
Triangle strips will work just fine. See this thread for an explanation of how to fix cracks if you use tri-strips.

Michael K.,
Designer and Graphics Programmer of "The Keepers"


We come in peace... surrender or die!
Michael K.
Thanks, that''s what I was looking for . Looks like I''ll go with strips.
Shmiznac

This topic is closed to new replies.

Advertisement