Commit 07cdf421 by Tobin Ehlis Committed by Commit Bot

Vulkan: Add new validation skips

Skip new error UNASSIGNED-CoreValidation-Shader-InputNotProduced and best practices warning UNASSIGNED-BestPractices-vkCmdClearAttachments-clear-after-load Bug: b/156661359 Bug: angleproject:4883 Change-Id: I05bf5cac46c54bfb32fa47ea6d3398bd534450f5 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2323641Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarCourtney Goeltzenleuchter <courtneygo@google.com> Commit-Queue: Tobin Ehlis <tobine@google.com>
parent 2918eade
...@@ -121,6 +121,8 @@ VkResult VerifyExtensionsPresent(const RendererVk::ExtensionNameList &haystack, ...@@ -121,6 +121,8 @@ VkResult VerifyExtensionsPresent(const RendererVk::ExtensionNameList &haystack,
constexpr const char *kSkippedMessages[] = { constexpr const char *kSkippedMessages[] = {
// http://anglebug.com/2866 // http://anglebug.com/2866
"UNASSIGNED-CoreValidation-Shader-OutputNotConsumed", "UNASSIGNED-CoreValidation-Shader-OutputNotConsumed",
// http://anglebug.com/4883
"UNASSIGNED-CoreValidation-Shader-InputNotProduced",
// http://anglebug.com/2796 // http://anglebug.com/2796
"UNASSIGNED-CoreValidation-Shader-PointSizeMissing", "UNASSIGNED-CoreValidation-Shader-PointSizeMissing",
// http://anglebug.com/3832 // http://anglebug.com/3832
...@@ -147,6 +149,7 @@ constexpr const char *kSkippedMessages[] = { ...@@ -147,6 +149,7 @@ constexpr const char *kSkippedMessages[] = {
"UNASSIGNED-BestPractices-vkCreateRenderPass-image-requires-memory", "UNASSIGNED-BestPractices-vkCreateRenderPass-image-requires-memory",
"UNASSIGNED-BestPractices-vkCreateGraphicsPipelines-too-many-instanced-vertex-buffers", "UNASSIGNED-BestPractices-vkCreateGraphicsPipelines-too-many-instanced-vertex-buffers",
"UNASSIGNED-BestPractices-DrawState-ClearCmdBeforeDraw", "UNASSIGNED-BestPractices-DrawState-ClearCmdBeforeDraw",
"UNASSIGNED-BestPractices-vkCmdClearAttachments-clear-after-load",
}; };
// Suppress validation errors that are known // Suppress validation errors that are known
......
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