Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed Jan 7, 2025
1 parent 5906c5a commit 3ad1985
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/webgpu/api/operation/storage_texture/read_only.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -567,13 +567,13 @@ g.test('basic')
t.skipIf(
!(t.device.limits.maxStorageTexturesInFragmentStage! > 0),
`maxStorageTexturesInFragmentStage(${t.device.limits
.maxStorageTexturesInFragmentStage!}) is not >= 0`
.maxStorageTexturesInFragmentStage!}) is not > 0`
);
} else if (shaderStage === 'vertex') {
t.skipIf(
!(t.device.limits.maxStorageTexturesInVertexStage! > 0),
`maxStorageTexturesInVertexStage(${t.device.limits
.maxStorageTexturesInVertexStage!}) is not >= 0`
.maxStorageTexturesInVertexStage!}) is not > 0`
);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ g.test('basic')
t.skipIf(
!(t.device.limits.maxStorageTexturesInFragmentStage! > 0),
`maxStorageTexturesInFragmentStage(${t.device.limits
.maxStorageTexturesInFragmentStage!}) is not >= 0`
.maxStorageTexturesInFragmentStage!}) is not > 0`
);
}
}
Expand Down

0 comments on commit 3ad1985

Please sign in to comment.