Original Post
I am currently working on geomipmapping. I want to solve cracks in a nice way. So I decided to use this: Image - LOD 4 Image - LOD 3 Edit: - added solution for corner Image - LOD corner solution As you can see, I solve possible cracks in pre-processing, when I generate indices. Positives: - all is preprocessed - LOD 1 can be connected to eg. LOD 10 :) - 1 chunk is drawn in one draw-call - while rendering, i dont need to solve neighbour LODs - I cant change LOD´s view distance very easily - easy to generate - just use recursion (only problem are corners, which must be done another way - I didnt solve them yet :)) Negatives: - require more triangles, if we connect LOD2 to LOD2 - little mess in my code :-D So far, I see, that there is more positives than negatives. I want to ask: is my approcach bad, or is acceptable ? [Edited by - martinperry on February 10, 2010 4:52:49 AM]