-
-
Notifications
You must be signed in to change notification settings - Fork 70
Freezing on window resize on Windows #507
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Created by: SableRaf I can reproduce the issue on Then I tried to make the smallest sketch that reproduces the error. This runs fine: void setup(){
windowResizable(true);
} This crashes when resizing: void setup(){
windowResizable(true);
}
void draw(){
} Note: The sketch can be closed with the stop button. |
Created by: benfry Yeah, I've been seeing it consistently on Windows, though I'm also confused because I thought I had it working properly at some point during the alpha/beta process for 4. |
Created by: marcelmauel Seems like there is a check for sketch.isLooping() missing in the resize listener of SurfaceAWT's frame. |
Created by: retiutut |
Created by: grimtin10 the main problem for me is that P2D fixes it, but the P2D renderer is very unstable for me for some reason, causing issues that i don't have with Java2D |
Fixed by #932 |
Created by: Galbi3000
I was going through the changelog for the version 4 betas and decided to quickly try the windowRatio example:
When I run it I get a small window showing the mouse co-ordinates scaled to 1280, 720 as expected. However, when I resize the window it freezes completely, it will not even respond to the X button to close the window. I have to use Task Manager to kill the process after which I get the following error in the IDE:
The text was updated successfully, but these errors were encountered: