I have upgrade jzyv8 to v9 in my Netbean application. But I cannot resize/maximize Jpanel/frame using Jzy3d v9 with Jogl 2, i got blank screen after resize panel and if i dig into code view object is null in the Render3d object.
GJPanel dispose the renderer.
public void reshape(GLAutoDrawable canvas, int x, int y, int width, int height){
//System.err.println("reshape with " + width + " " + height);
this.width = width;
this.height = height;
if(view != null){
view.dimensionDirty = true;
if(canvas!=null){
//GL gl1 = canvas.getGL();
GL2 gl = canvas.getGL().getGL2();
view.clear(gl);
view.render(gl, glu);
}
}
}