Suppress more VUIDs
Add more suppressions for new vulkan validation failures.
Bug: 381887313
Change-Id: Ib8b07285a2dfb3179c25d5f2db45681fdbc6125f
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/217996
Commit-Queue: dan sinclair <dsinclair@chromium.org>
Auto-Submit: dan sinclair <dsinclair@chromium.org>
Reviewed-by: James Price <jrprice@google.com>
Commit-Queue: James Price <jrprice@google.com>
diff --git a/src/dawn/native/vulkan/BackendVk.cpp b/src/dawn/native/vulkan/BackendVk.cpp
index 132f9bb..025862f 100644
--- a/src/dawn/native/vulkan/BackendVk.cpp
+++ b/src/dawn/native/vulkan/BackendVk.cpp
@@ -175,12 +175,20 @@
{"NVIDIA", "vkBindImageMemory: memoryTypeIndex"},
// https://crbug.com/381887313
- {"VUID-VkPipelineLayoutCreateInfo-descriptorType-03023",
- "max per-stage uniform buffer bindings count (4) exceeds device "
- "maxPerStageDescriptorUpdateAfterBindUniformBuffers limit (0)"},
{"VUID-VkPipelineLayoutCreateInfo-descriptorType-03022",
"max per-stage sampler bindings count (1) exceeds device "
"maxPerStageDescriptorUpdateAfterBindSamplers limit (0)"},
+ {"VUID-VkPipelineLayoutCreateInfo-descriptorType-03023",
+ "maxPerStageDescriptorUpdateAfterBindUniformBuffers limit (0)"},
+ {"VUID-VkPipelineLayoutCreateInfo-descriptorType-03024",
+ "max per-stage storage buffer bindings count (1) exceeds device "
+ "maxPerStageDescriptorUpdateAfterBindStorageBuffers limit (0)"},
+ {"VUID-VkPipelineLayoutCreateInfo-descriptorType-03025",
+ "max per-stage sampled image bindings count (1) exceeds device "
+ "maxPerStageDescriptorUpdateAfterBindSampledImages limit (0)"},
+ {"VUID-VkPipelineLayoutCreateInfo-pSetLayouts-03037",
+ "sum of uniform buffer bindings among all stages (4) exceeds device "
+ "maxDescriptorSetUpdateAfterBindUniformBuffers limit (0)"},
};
namespace dawn::native::vulkan {