Login  Register

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

Posted by gouessej on Mar 12, 2016; 7:33am
URL: https://forum.jogamp.org/JOGL-Rendering-Issues-Different-for-v1-1-1-and-v2-0-and-with-Laptop-docked-vs-not-tp4036458p4036482.html

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.
Julien Gouesse | Personal blog | Website