processing / processing/processing4

NullPointerException on Dynamic Window Resize in Processing

オープン
#1,146 コメント 6 件 リアクション 0 件 担当者 1 名 GitHub で見る

@tudasamenc がすでに取り組んでいます。

2025年7月10日 から。

bug
主要言語
Java
スター
494
フォーク
183
平均マージ
4時間 39分
マージ済み PR(30日)
3

説明

Most appropriate sub-area of Processing 4?

Core/Environment/Rendering

Processing version

4.4.4

Operating system

Windows 10

Steps to reproduce this

1. Description :
When dynamically resizing a Processing sketch window (via surface.setSize(w, h) or by enabling surface.setResizable(true)), a NullPointerException may occur in Component$BltBufferStrategy.revalidate(...), due to an internal backBuffers[] array being null.

This happens during the rendering phase, likely due to an invalidated or uninitialized BufferStrategy after the resize.

2. Example Stack Trace :

java.lang.NullPointerException: Cannot invoke "java.awt.image.VolatileImage.validate(java.awt.GraphicsConfiguration)" because "this.backBuffers[...]" is null
    at java.desktop/java.awt.Component$BltBufferStrategy.revalidate(Component.java:4552)
    at java.desktop/java.awt.Component$BltBufferStrategy.getDrawGraphics(Component.java:4449)
    at processing.awt.PSurfaceAWT.render(PSurfaceAWT.java:242)
    at processing.awt.PSurfaceAWT$9.callDraw(PSurfaceAWT.java:1389)
    at processing.core.PSurfaceNone$AnimationThread.run(PSurfaceNone.java:356)

3. Expected Behavior :
When resizing the window, either manually (with setResizable(true)) or programmatically (via surface.setSize(w, h)), the sketch should continue rendering smoothly without crashing or throwing an exception.

snippet

// Paste your code below :)

void setup() {
  size(600, 400);
  surface.setResizable(true);
}

void draw() {
  background(200);
}
Additional context

Discovered Workaround :

Calling surface.setVisible(true) immediately after resizing prevents the crash :

surface.setSize(w, h);
surface.setVisible(true);               // Prevents the NPE
Would you like to work on the issue?

No

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。