Skip to content

Commit 5b76bd5

Browse files
mvaligurskyMartin Valigursky
andauthored
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 3fa2f0b commit 5b76bd5

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)