From 3586d8f10b71281534e19fda5549eff8b356993d Mon Sep 17 00:00:00 2001 From: Gregg Tavares Date: Tue, 17 Dec 2024 09:42:40 +0900 Subject: [PATCH] address comments --- .../encoding/programmable/pipeline_bind_group_compat.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/webgpu/compat/api/validation/encoding/programmable/pipeline_bind_group_compat.spec.ts b/src/webgpu/compat/api/validation/encoding/programmable/pipeline_bind_group_compat.spec.ts index 28c5899577c..4b9f5ec0252 100644 --- a/src/webgpu/compat/api/validation/encoding/programmable/pipeline_bind_group_compat.spec.ts +++ b/src/webgpu/compat/api/validation/encoding/programmable/pipeline_bind_group_compat.spec.ts @@ -334,7 +334,8 @@ Tests that you can not use 2 different views of the same texture in a render pas t.skipIf( t.isCompatibility && textureType === 'storage' && - !(t.device.limits.maxStorageBuffersInFragmentStage! > 2) + !(t.device.limits.maxStorageBuffersInFragmentStage! > 2), + `device only supports maxStorageBuffersInFragmentStage(${t.device.limits.maxStorageBuffersInFragmentStage}) but test needs 2` ); const { bindConfig, fn } = kBindCases[bindCase];