Skip to content
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

Resizable Window has rendering Bug #1003

Open
Benkralex opened this issue Mar 24, 2025 · 6 comments
Open

Resizable Window has rendering Bug #1003

Benkralex opened this issue Mar 24, 2025 · 6 comments
Assignees
Labels
bug Something isn't working core help wanted Extra attention is needed linux

Comments

@Benkralex
Copy link

Benkralex commented Mar 24, 2025

Most appropriate sub-area of Processing 4?

Core/Environment/Rendering

Processing version

1295

Operating system

Linux Mint 22.1 x86_64; Kernel: 6.8.0-54-generic

Steps to reproduce this

  1. Download Source Code from https://github.com/processing/processing4/releases/tag/processing-1297-4.3.4

  2. Open Project in IntelliJ and run Ant Target Linux (See Picture in Additional context for Configuration)

  3. Paste Code from the Example of setResizable() into the IDE and run (See Picture in Additional context)

  4. Resize the window

snippet

void setup() {
  size(200, 200);
  surface.setTitle("Hello World!");
  surface.setResizable(true);
  surface.setLocation(100, 100);
}

void draw() {
  background(204);
  line(0, 0, width, height);
  line(width, 0, 0, height); 
}

Additional context

Image

Image

Would you like to work on the issue?

No

@Benkralex Benkralex added the bug Something isn't working label Mar 24, 2025
@Stefterv
Copy link
Collaborator

Hi @Benkralex I could not reproduce this on Ubuntu, could you please test the 4.4.1 beta with the distributed binary?

@Benkralex
Copy link
Author

I tested 4.4.1 beta with IntelliJ
Run Config:

Image

Same issue

I also tested to install the latest/beta 4.4.1 Version of the Snap Store, again same issue

@Stefterv
Copy link
Collaborator

Stefterv commented Mar 24, 2025

Tested on a Linux Mint VM and seeing the same thing, switching to the P2D renderer fixes it so you could use that as a temporary fix until someone on real Mint can help us debug and fix this issue.

Image

@Stefterv Stefterv added help wanted Extra attention is needed linux core labels Mar 24, 2025
@chris-ti-an
Copy link

tested it with Processing (latest/beta 4.4.1) on Ubuntu 24.04.2 LTS

If I repeatedly resize the window for some time very quickly (large, small, large, ...), it takes a few seconds until it crashes and looks similar to the screenshots above.

@Stefterv
Copy link
Collaborator

Ah thank you @chris-ti-an, I suspect that is a different issue as on Mint it was instant, what you're describing is something we've also seen on Windows before

@SableRaf
Copy link
Collaborator

SableRaf commented Apr 1, 2025

A simple resizeable sketch can also crash if the resizing is happening too fast.

Screen.Recording.2025-04-01.at.21.31.53.mov

Snippet

void setup() {
  size(500, 500);
  windowResizable(true);
  // allow the window to be resized
}

void draw() {
  circle(width / 2, height / 2, min(width, height) * 0.5);
  // draw a circle that resizes with the window
}

void windowResized() {
  println("Window resized to: " + width + "x" + height);
  // this function is called whenever the window is resized
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working core help wanted Extra attention is needed linux
Projects
None yet
Development

No branches or pull requests

4 participants