Hi!
Sorry to refresh this old thread. Do you mean that mixing a lot of VBO with even a tiny use of immediate mode is noticeably slower than using only VBOs? If so, why?
Hi!
Sorry to refresh this old thread. Do you mean that mixing a lot of VBO with even a tiny use of immediate mode is noticeably slower than using only VBOs? If so, why?
I suspect that as soon as you involve immediate mode it completely buggers the nice interleaved VBO pipelines you’ve got all set up and the drivers have to turn off a whole load of optimisations. Not to mention the fact that it’ll probably stall the pipelines. And the driver writers most likely don’t optimise the immediate mode path any more as nobody’s supposed to be using it.
Cas
Thank you very much for your explanation.