Commit d9b4eb38 by Tim Van Patten Committed by Commit Bot

Vulkan: Suppress VkSubpassDescriptionDepthStencilResolve

Suppress the following erroneous VVL error: VUID-VkSubpassDescriptionDepthStencilResolve-depthResolveMode-parameter Bug: angleproject:5331 Change-Id: I010d5c56e668eb1e1c500fece570d6e20d3c5a54 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2537918Reviewed-by: 's avatarTim Van Patten <timvp@google.com> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Tim Van Patten <timvp@google.com>
parent 3435503b
...@@ -129,15 +129,19 @@ constexpr const char *kSkippedMessages[] = { ...@@ -129,15 +129,19 @@ constexpr const char *kSkippedMessages[] = {
"VUID-VkPipelineInputAssemblyStateCreateInfo-topology-00428", "VUID-VkPipelineInputAssemblyStateCreateInfo-topology-00428",
// http://anglebug.com/4063 // http://anglebug.com/4063
"VUID-VkDeviceCreateInfo-pNext-pNext", "VUID-VkDeviceCreateInfo-pNext-pNext",
"VUID-VkPipelineRasterizationStateCreateInfo-pNext-pNext", "VUID_Undefined", "VUID-VkPipelineRasterizationStateCreateInfo-pNext-pNext",
"VUID_Undefined",
// https://issuetracker.google.com/issues/159493191 // https://issuetracker.google.com/issues/159493191
"VUID-vkCmdDraw-None-02690", "VUID-vkCmdDrawIndexed-None-02690", "VUID-vkCmdDraw-None-02690",
"VUID-vkCmdDrawIndexed-None-02690",
// http://anglebug.com/4975 // http://anglebug.com/4975
"VUID-vkCmdDraw-None-02687", "VUID-vkCmdDrawIndexed-None-02687", "VUID-vkCmdDraw-None-02687",
"VUID-vkCmdDrawIndexed-None-02687",
// Best Practices Skips https://issuetracker.google.com/issues/166641492 // Best Practices Skips https://issuetracker.google.com/issues/166641492
// https://issuetracker.google.com/issues/166793850 // https://issuetracker.google.com/issues/166793850
"UNASSIGNED-BestPractices-vkCreateCommandPool-command-buffer-reset", "UNASSIGNED-BestPractices-vkCreateCommandPool-command-buffer-reset",
"UNASSIGNED-BestPractices-pipeline-stage-flags", "UNASSIGNED-BestPractices-Error-Result", "UNASSIGNED-BestPractices-pipeline-stage-flags",
"UNASSIGNED-BestPractices-Error-Result",
"UNASSIGNED-BestPractices-vkAllocateMemory-small-allocation", "UNASSIGNED-BestPractices-vkAllocateMemory-small-allocation",
"UNASSIGNED-BestPractices-vkBindMemory-small-dedicated-allocation", "UNASSIGNED-BestPractices-vkBindMemory-small-dedicated-allocation",
"UNASSIGNED-BestPractices-vkAllocateMemory-too-many-objects", "UNASSIGNED-BestPractices-vkAllocateMemory-too-many-objects",
...@@ -151,13 +155,16 @@ constexpr const char *kSkippedMessages[] = { ...@@ -151,13 +155,16 @@ constexpr const char *kSkippedMessages[] = {
// http://anglebug.com/5027 // http://anglebug.com/5027
"UNASSIGNED-CoreValidation-Shader-PushConstantOutOfRange", "UNASSIGNED-CoreValidation-Shader-PushConstantOutOfRange",
// http://anglebug.com/5304 // http://anglebug.com/5304
"VUID-vkCmdDraw-magFilter-04553", "VUID-vkCmdDrawIndexed-magFilter-04553", "VUID-vkCmdDraw-magFilter-04553",
"VUID-vkCmdDrawIndexed-magFilter-04553",
// http://anglebug.com/5309 // http://anglebug.com/5309
"VUID-VkImageViewCreateInfo-usage-02652", "VUID-VkImageViewCreateInfo-usage-02652",
// http://anglebug.com/5336 // http://anglebug.com/5336
"UNASSIGNED-BestPractices-vkCreateDevice-specialuse-extension", "UNASSIGNED-BestPractices-vkCreateDevice-specialuse-extension",
// http://anglebug.com/5331 // http://anglebug.com/5331
"VUID-VkSubpassDescriptionDepthStencilResolve-stencilResolveMode-parameter"}; "VUID-VkSubpassDescriptionDepthStencilResolve-depthResolveMode-parameter",
"VUID-VkSubpassDescriptionDepthStencilResolve-stencilResolveMode-parameter",
};
// Suppress validation errors that are known // Suppress validation errors that are known
// return "true" if given code/prefix/message is known, else return "false" // return "true" if given code/prefix/message is known, else return "false"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment