From 3ad198595bbef0069c02502a562fc6d7718bb209 Mon Sep 17 00:00:00 2001 From: Gregg Tavares Date: Tue, 7 Jan 2025 11:33:39 -0800 Subject: [PATCH] address comments --- src/webgpu/api/operation/storage_texture/read_only.spec.ts | 4 ++-- src/webgpu/api/operation/storage_texture/read_write.spec.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/webgpu/api/operation/storage_texture/read_only.spec.ts b/src/webgpu/api/operation/storage_texture/read_only.spec.ts index d1d3a348290..76903675125 100644 --- a/src/webgpu/api/operation/storage_texture/read_only.spec.ts +++ b/src/webgpu/api/operation/storage_texture/read_only.spec.ts @@ -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` ); } } diff --git a/src/webgpu/api/operation/storage_texture/read_write.spec.ts b/src/webgpu/api/operation/storage_texture/read_write.spec.ts index d31ef4d9b8b..ad70d68352c 100644 --- a/src/webgpu/api/operation/storage_texture/read_write.spec.ts +++ b/src/webgpu/api/operation/storage_texture/read_write.spec.ts @@ -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` ); } }