Login  Register

Re: queryProperties...

Posted by hharrison on May 12, 2014; 4:17pm
URL: https://forum.jogamp.org/Java3D-1-6-crashes-JVM-tp4031293p4032316.html

Digging into the JDK...around line 2795:

2793    private void  [More ...] addToWindowList() {
2794    synchronized (Window.class) {
2795          Vector<WeakReference<Window>> windowList = (Vector<WeakReference<Window>>)appContext.get(Window.class);
2796          if (windowList == null) {

Sooo, another null appcontext problem, I'll see if I can also do the workaround in the queryproperties case, as the pipeline
may not be initialized yet either....fun!

Harvey