Skip to content

Commit

Permalink
Merge pull request #656 from gkjohnson/dispose-fix
Browse files Browse the repository at this point in the history
WebGLPathTracer: Fix incorrect references in "dispose"
  • Loading branch information
gkjohnson authored Jun 26, 2024
2 parents e1dafff + bcb6a9e commit 2a76c72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/WebGLPathTracer.js
Original file line number Diff line number Diff line change
Expand Up @@ -490,8 +490,8 @@ export class WebGLPathTracer {

dispose() {

this._renderQuad.dispose();
this._renderQuad.material.dispose();
this._quad.dispose();
this._quad.material.dispose();
this._pathTracer.dispose();

}
Expand Down

0 comments on commit 2a76c72

Please sign in to comment.