Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed Dec 17, 2024
1 parent ac8acaf commit 6df7a29
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -790,14 +790,14 @@ g.test('bgl_resource_type_mismatch')
t.isCompatibility &&
resourceIsStorageTexture(plResourceType) &&
!(t.device.limits.maxStorageTexturesInFragmentStage! >= 1),
`maxStorageTexturesInFragmentStage(${t.device.limits.maxStorageTexturesInFragmentStage} is not >= 1`
`maxStorageTexturesInFragmentStage(${t.device.limits.maxStorageTexturesInFragmentStage}) is not >= 1`
);

t.skipIf(
t.isCompatibility &&
resourceIsStorageBuffer(plResourceType) &&
!(t.device.limits.maxStorageBuffersInFragmentStage! >= 1),
`maxStorageBuffersInFragmentStage(${t.device.limits.maxStorageBuffersInFragmentStage} is not >= 1`
`maxStorageBuffersInFragmentStage(${t.device.limits.maxStorageBuffersInFragmentStage}) is not >= 1`
);

const bglEntries: Array<GPUBindGroupLayoutEntry> = [
Expand Down

0 comments on commit 6df7a29

Please sign in to comment.