Dear all,
one of my user is experiencing the following error:
at javax.media.opengl.GLProfile.get(GLProfile.java:643)
at javax.media.opengl.GLProfile.getDefault(GLProfile.java:466)
at javax.media.opengl.GLProfile.getDefault(GLProfile.java:474)
at jfrog.Displayer.<init>(Displayer.java:117)
at jfrog.Displayer.main(Displayer.java:166)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at com.sun.javaws.Launcher.executeApplication(Launcher.java:1914)
at com.sun.javaws.Launcher.executeMainClass(Launcher.java:1847)
at com.sun.javaws.Launcher.doLaunchApp(Launcher.java:1609)
at com.sun.javaws.Launcher.run(Launcher.java:138)
at java.lang.Thread.run(Thread.java:680)
Displayer line 117, is the first one of that block, it doesn’t seems to be very complex…
GLProfile glp = GLProfile.getDefault();
GLCapabilities caps = new GLCapabilities(glp);
caps.setDoubleBuffered(true);
//caps.setStereo(true);
System.out.printf("%s\n", caps.toString());
GLCanvas canvas = new GLCanvas(caps);
the user is running on a mac, but I don’t have more details…
anyone has any experience about this?
Thanks in advance for sharing the tricks,
Loic