Re: Java3D 1.6.0-pre11 released
Posted by
Manu on
Jan 17, 2015; 7:49pm
URL: https://forum.jogamp.org/Java3D-1-6-0-pre11-released-tp4032735p4033869.html
After a new try with JOGL 2.2.4 / Java 8u25 under Mac OS X, I noticed that antialiasing works but keep reporting that the filter (min/max values?) isn't as efficient as in previous versions, making rendered images less nice at screen. Could this issue be fixed? Or was this change made on purpose?
I also tried to use Canvas3D instances with applets (not JCanvas3D instances which are incredibly slow on a Retina display) and on this side, I've got good news: it works great under Mac OS X 10.10, even if a few stack traces like the following one appear in the Java console:
RunnableTask.run(): A caught exception occured on thread Repaint-OnAppContextTG:
RunnableTask[executed false, tTotal 0 ms, tExec 0 ms, tQueue 0 ms, attachment null, throwable java.lang.NullPointerException]
java.lang.NullPointerException
at sun.awt.SunToolkit.getSystemEventQueueImplPP(SunToolkit.java:1080)
at sun.awt.SunToolkit.getSystemEventQueueImplPP(SunToolkit.java:1075)
at sun.awt.SunToolkit.getSystemEventQueueImpl(SunToolkit.java:1070)
at java.awt.Toolkit.getEventQueue(Toolkit.java:1734)
at java.awt.Component.repaint(Component.java:3403)
at java.awt.Component.repaint(Component.java:3303)
at com.jogamp.nativewindow.awt.JAWTWindow$1.run(JAWTWindow.java:411)
at com.jogamp.common.util.RunnableTask.run(RunnableTask.java:133)
at com.jogamp.common.util.RunnableTask$1.run(RunnableTask.java:84)
With JCanvas instances, I didn't notice
the exception I reported on August 8, 2014.
Emmanuel Puybaret