Login  Register

Re: Java 3D crash or flickering

Posted by philjord on Jun 03, 2016; 1:24pm
URL: https://forum.jogamp.org/Java-3D-crash-or-flickering-tp4035074p4036787.html

imagejan, cmello,
Thanks for those tests, it seems like the line
  profile = GLProfile.getMaxFixedFunc(true);

Is not picking up any of the possible profiles for some reason.

ctrueden,
If you are looking for a fast way to get this patched the next test would be for you to modify the JoglPipeline class

replace line 132:

profile = GLProfile.getMaxFixedFunc(true);

with

profile = GLProfile.getGL2ES1();

And get it tested on an affected machine, if it works then we have the culprit and can concentrate on a decent solution.

Thanks,
Phil.