Re: Available GLVersions not set for EGLGraphicsDevic
Posted by
farrellf on
Dec 23, 2019; 6:43pm
URL: https://forum.jogamp.org/Available-GLVersions-not-set-for-EGLGraphicsDevic-tp4040111p4040195.html
Oh, I didn't realize this thread was originally about Java3D. I'm just using JOGL, not the Java3D stuff.
It looks like the JVM crashes when this code of mine runs:
GLCapabilities capabilities = null;
try {
capabilities = new GLCapabilities(GLProfile.get(GLProfile.GL2));
} catch(Exception | InternalError e) {
...
-Farrell