Login  Register

Re: ? JOGL Rendering Issues - Different for v1.1.1 and v2.0 and with Laptop docked vs not ?

Posted by Z-Knight on Mar 14, 2016; 2:39pm
URL: https://forum.jogamp.org/JOGL-Rendering-Issues-Different-for-v1-1-1-and-v2-0-and-with-Laptop-docked-vs-not-tp4036458p4036486.html

gouessej wrote
I advise you not to use display lists even on old hardware. Lots of drivers have buggy implementations and anyway they are emulated with VBOs under the hood. I get better performance with VBOs except on hardware that emulate them with vertex arrays even in static draw mode. I advise you to use static VBOs and to use the constant indicating the maximum element count in order to avoid creating too big ones in order to keep decent performance.
I understand, but it was the best solution for my setup and it has worked thus far. Also, my VBO implementation - though it seems to work - is likely wrong since I seemed to have better performance with Display Lists. But, that's a different question and I'll get to it eventually.