Login  Register

Re: reshape not called in 2nd GLCanvas

Posted by scott+jogamp@vorthmann.org on Jan 27, 2023; 1:03am
URL: https://forum.jogamp.org/reshape-not-called-in-2nd-GLCanvas-tp4042121p4042125.html

No, I don't use an animator to the best of my knowledge.

Note that the problem seems to occur on Macs only, not on Windows.  I have no data for Linux.


The source will be hard to wade through without a sequence diagram... but it is all available on GitHub.

My GLEventListener is here:  

https://github.com/vZome/vzome/blob/master/desktop/src/main/java/org/vorthmann/zome/render/jogl/JoglRenderingViewer.java

The factory that constructs it is here:

https://github.com/vZome/vzome/blob/master/desktop/src/main/java/org/vorthmann/zome/render/jogl/JoglFactory.java

The misbehaving GLCanvas is attached to its container here:

https://github.com/vZome/vzome/blob/b0b9d45a5c4dacd35bc8d614a8e93998b3f24273/desktop/src/main/java/org/vorthmann/zome/ui/CameraControlPanel.java#L103

The correctly behaving GLCanvas is attached to its container here:

https://github.com/vZome/vzome/blob/b0b9d45a5c4dacd35bc8d614a8e93998b3f24273/desktop/src/main/java/org/vorthmann/zome/ui/ModelPanel.java#L79

and those two JPanels are constructed here (separated by 10 lines or so):

https://github.com/vZome/vzome/blob/b0b9d45a5c4dacd35bc8d614a8e93998b3f24273/desktop/src/main/java/org/vorthmann/zome/ui/DocumentFrame.java#L551