Skip to content

Commit 8e70942

Browse files
committed
WebGPURenderer: Fix antialias code.
1 parent 00cabc4 commit 8e70942

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

examples/jsm/renderers/webgpu/WebGPURenderer.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,13 +140,11 @@ class WebGPURenderer {
140140

141141
colorAttachment.attachment = this._colorBuffer.createView();
142142
colorAttachment.resolveTarget = this._swapChain.getCurrentTexture().createView();
143-
colorAttachment.storeOp = GPUStoreOp.Clear;
144143

145144
} else {
146145

147146
colorAttachment.attachment = this._swapChain.getCurrentTexture().createView();
148147
colorAttachment.resolveTarget = undefined;
149-
colorAttachment.storeOp = undefined;
150148

151149
}
152150

0 commit comments

Comments
 (0)