Skip to content

Commit d32751a

Browse files
committed
Fix infinite update loop
If the input buffer is null, the next assignment results in a change event on the same resource that is currently being updated because BloomEffect shares its input buffer resource with its subpasses.
1 parent 1de7c99 commit d32751a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/effects/BloomEffect.ts

+10
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,16 @@ export class BloomEffect extends Effect {
143143

144144
protected override onInputChange(): void {
145145

146+
if(this.input.defaultBuffer === null) {
147+
148+
// Discard the texture resources.
149+
this.luminancePass.input.removeDefaultBuffer();
150+
this.mipmapBlurPass.input.removeDefaultBuffer();
151+
152+
return;
153+
154+
}
155+
146156
if(this.luminancePass.enabled) {
147157

148158
this.luminancePass.input.defaultBuffer = this.input.defaultBuffer;

0 commit comments

Comments
 (0)