Login  Register

Re: freeze on macos Sonoma

Posted by SiboVG on Nov 18, 2023; 2:02am
URL: https://forum.jogamp.org/freeze-on-macos-Sonoma-tp4043021p4043143.html

Okay, I was able to solve the freezing by starting `initGLCanvas()` in a new thread:
```
new Thread(() -> {
        initGLCanvas();
}).start();
```