Skip to content

Commit

Permalink
Compat: skip tests use rg32xxx formats with createBindGroupLayout
Browse files Browse the repository at this point in the history
rg32xxx are not usable as storage textures in compat
  • Loading branch information
greggman committed Dec 16, 2023
1 parent dac947f commit eb1892c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/webgpu/api/validation/createBindGroup.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -816,8 +816,8 @@ g.test('storage_texture,format')
.combine('resourceFormat', kStorageTextureFormats)
)
.beforeAllSubcases(t => {
const { resourceFormat } = t.params;
t.skipIfTextureFormatNotUsableAsStorageTexture(resourceFormat);
const { storageTextureFormat, resourceFormat } = t.params;
t.skipIfTextureFormatNotUsableAsStorageTexture(storageTextureFormat, resourceFormat);
})
.fn(t => {
const { storageTextureFormat, resourceFormat } = t.params;
Expand Down

0 comments on commit eb1892c

Please sign in to comment.