We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 789fabd commit 8a26119Copy full SHA for 8a26119
1 file changed
src/webgpu/materials/RenderToScreenMaterial.js
@@ -98,10 +98,10 @@ export class RenderToScreenNodeMaterial extends MeshBasicNodeMaterial {
98
99
super();
100
101
- const texNode = texture( new StorageTexture(), varying( uv() ) );
+ const texNode = texture( new StorageTexture() );
102
this._texNode = texNode;
103
104
- const fromTexNode = texture( new StorageTexture(), varying( uv() ) );
+ const fromTexNode = texture( new StorageTexture() );
105
this._fromTexNode = fromTexNode;
106
107
const texUV = varying( uv() );
0 commit comments