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 49dd714 commit 25773c0Copy full SHA for 25773c0
src/webgpu/api/operation/memory_sync/texture/readonly_depth_stencil.spec.ts
@@ -31,7 +31,16 @@ testing while the other one is used for sampling.
31
})
32
)
33
.beforeAllSubcases(t => {
34
+ const { format } = t.params;
35
+ const formatInfo = kTextureFormatInfo[format];
36
+ const hasDepth = formatInfo.depth !== undefined;
37
+ const hasStencil = formatInfo.stencil !== undefined;
38
+
39
t.selectDeviceForTextureFormatOrSkipTestCase(t.params.format);
40
+ t.skipIf(
41
+ t.isCompatibility && hasDepth && hasStencil,
42
+ 'compatibility mode does not support different TEXTURE_BINDING views of the same texture in a single draw calls'
43
+ );
44
45
.fn(t => {
46
const { format, depthReadOnly, stencilReadOnly } = t.params;
0 commit comments