Skip to content

Commit 4773e9f

Browse files
mvaligurskyMartin Valigursky
andcommitted
fix: reset render pass merge flags each frame in FrameGraph.compile() (#8516)
Fixed #8514 Made-with: Cursor Co-authored-by: Martin Valigursky <mvaligursky@snapchat.com>
1 parent 4322c03 commit 4773e9f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/scene/frame-graph.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ class FrameGraph {
6262
const renderPasses = this.renderPasses;
6363
for (let i = 0; i < renderPasses.length; i++) {
6464
const renderPass = renderPasses[i];
65+
renderPass._skipStart = false;
66+
renderPass._skipEnd = false;
67+
6568
const renderTarget = renderPass.renderTarget;
6669

6770
// if using a target, or null which represents the default back-buffer

0 commit comments

Comments
 (0)