Skip to content

Commit dbde1d1

Browse files
authored
PostProcessing: Harmonize node update type. (#29564)
1 parent efbf25c commit dbde1d1

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

examples/jsm/tsl/display/AfterImageNode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class AfterImageNode extends TempNode {
2929

3030
this._textureNode = passTexture( this, this._compRT.texture );
3131

32-
this.updateBeforeType = NodeUpdateType.RENDER;
32+
this.updateBeforeType = NodeUpdateType.FRAME;
3333

3434
}
3535

examples/jsm/tsl/display/AnamorphicNode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class AnamorphicNode extends TempNode {
2929

3030
this._textureNode = passTexture( this, this._renderTarget.texture );
3131

32-
this.updateBeforeType = NodeUpdateType.RENDER;
32+
this.updateBeforeType = NodeUpdateType.FRAME;
3333

3434
}
3535

examples/jsm/tsl/display/DenoiseNode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class DenoiseNode extends TempNode {
2828
this._resolution = uniform( new Vector2() );
2929
this._sampleVectors = uniformArray( generatePdSamplePointInitializer( 16, 2, 1 ) );
3030

31-
this.updateBeforeType = NodeUpdateType.RENDER;
31+
this.updateBeforeType = NodeUpdateType.FRAME;
3232

3333
}
3434

examples/jsm/tsl/display/DepthOfFieldNode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class DepthOfFieldNode extends TempNode {
2121

2222
this._aspect = uniform( 0 );
2323

24-
this.updateBeforeType = NodeUpdateType.RENDER;
24+
this.updateBeforeType = NodeUpdateType.FRAME;
2525

2626
}
2727

examples/jsm/tsl/display/FXAANode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class FXAANode extends TempNode {
1515

1616
this.textureNode = textureNode;
1717

18-
this.updateBeforeType = NodeUpdateType.RENDER;
18+
this.updateBeforeType = NodeUpdateType.FRAME;
1919

2020
this._invSize = uniform( new Vector2() );
2121

examples/jsm/tsl/display/GaussianBlurNode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class GaussianBlurNode extends TempNode {
3333

3434
this._textureNode = passTexture( this, this._verticalRT.texture );
3535

36-
this.updateBeforeType = NodeUpdateType.RENDER;
36+
this.updateBeforeType = NodeUpdateType.FRAME;
3737

3838
this.resolution = new Vector2( 1, 1 );
3939

examples/jsm/tsl/display/PixelationPassNode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class PixelationNode extends TempNode {
2929

3030
this._resolution = uniform( new Vector4() );
3131

32-
this.updateBeforeType = NodeUpdateType.RENDER;
32+
this.updateBeforeType = NodeUpdateType.FRAME;
3333

3434
}
3535

examples/jsm/tsl/display/SMAANode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class SMAANode extends TempNode {
2525

2626
this.textureNode = textureNode;
2727

28-
this.updateBeforeType = NodeUpdateType.RENDER;
28+
this.updateBeforeType = NodeUpdateType.FRAME;
2929

3030
// render targets
3131

examples/jsm/tsl/display/SobelOperatorNode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class SobelOperatorNode extends TempNode {
1515

1616
this.textureNode = textureNode;
1717

18-
this.updateBeforeType = NodeUpdateType.RENDER;
18+
this.updateBeforeType = NodeUpdateType.FRAME;
1919

2020
this._invSize = uniform( new Vector2() );
2121

0 commit comments

Comments
 (0)