Im currently programming for the Nintendo DS using devkitpro, libnds.

It uses OpenGL, and displays 3d models with display lists.

I was wondering if there was a way of knowing how many polygons a display list generates if you simply load a compiled display list from a file.

The display lists files are in binary, and are read in unsigned ints segments.(I think this is how you would describe it).

link|improve this question

Unless you reverse-engineer the implementation, there's no way of knowing. The obvious way (divide the size by some constant, such as the size of 3 vertices) will not not even give an approximately correct result, since display lists also contain texture data etc. – Damon Oct 28 '11 at 18:45
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.