This is strange.

When I render my mesh, the fps is a stable 130 or so.

When I put it into a display list, the fps DROPS to little more than 15.

When I take out the few material and texturing commands, it goes back up to 130.

Why is this? Why are the OpenGL state changing commands so pressing on FPS? I think I read somewhere not to ever, ever do this.

link|improve this question

3  
OS? OpenGL implementation vendor? – genpfault Dec 10 '10 at 15:43
and also put what exactly you store into the display list. – Bahbar Dec 10 '10 at 19:39
Windows. I don't know. Nothing but the color/material commands and the code that renders the model (vertex arrays). – Alexander Rafferty Dec 11 '10 at 0:39
1  
Are you sure you're not generating the list every frame? – SurvivalMachine Dec 12 '10 at 17:09
feedback

1 Answer

up vote 1 down vote accepted

The most common mistake is putting the display list creation into the render loop. Make sure you are creating the display list somewhere during initialization and only rendering it in the render loop. Aside from that, you will just have to post a code sample for us to look at.

link|improve this answer
No, it is only recreated when the mesh is changed. – Alexander Rafferty Feb 5 '11 at 9:52
And this problem is in the past. I'm not even using DLs anymore. Thanks for the response though. – Alexander Rafferty Feb 5 '11 at 9:52
Good man. I didn't want to say it, but DLs are extremely primitive. There are far better ways to draw complex geometry. :) – TheBuzzSaw Feb 7 '11 at 18:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.