benfry / processing4

Processing 4.x releases for Java 17
https://processing.org
Other
1.31k stars 236 forks source link

Resizing the sketch makes P2D / P3D freeze forever #838

Open clankill3r opened 1 month ago

clankill3r commented 1 month ago

Description

When resizing a sketch with the P2D/P2D renderer it makes the sketch freeze forever. (You might have to keep resizing for like 10 seconds before it happens).

void settings() {
    size(1200, 900, P3D);
}

void setup() {
    surface.setResizable(true);
}

Your Environment

(I might check windows tomorrow).