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 64df03d commit 3dd226dCopy full SHA for 3dd226d
src/renderers/webgpu/utils/WebGPUTextureUtils.js
@@ -266,6 +266,7 @@ class WebGPUTextureUtils {
266
267
msaaTextureDescriptorGPU.label = msaaTextureDescriptorGPU.label + '-msaa';
268
msaaTextureDescriptorGPU.sampleCount = samples;
269
+ msaaTextureDescriptorGPU.mipLevelCount = 1; // See https://www.w3.org/TR/webgpu/#texture-creation
270
271
textureData.msaaTexture = backend.device.createTexture( msaaTextureDescriptorGPU );
272
0 commit comments