Commit b131d25f by Shahbaz Youssefi Committed by Commit Bot

Vulkan: Remove validation error suppressions for VVL bug

These warnings were generated due to a validation layer bug, which is presumably fixed now. Bug: angleproject:4572 Bug: angleproject:4577 Bug: angleproject:4578 Bug: angleproject:4579 Bug: angleproject:4580 Bug: angleproject:4583 Change-Id: I8799c4e33bc38f83e0fdd364cf6e7eb607c39890 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2227810Reviewed-by: 's avatarTim Van Patten <timvp@google.com> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org>
parent 8f3aa154
...@@ -190,7 +190,7 @@ class CallDAG::CallDAGCreator : public TIntermTraverser ...@@ -190,7 +190,7 @@ class CallDAG::CallDAGCreator : public TIntermTraverser
if (!function->definitionNode) if (!function->definitionNode)
{ {
errorStream << "Undefined function '" << function->name errorStream << "Undefined function '" << function->name
<< ")' used in the following call chain:"; << "()' used in the following call chain:";
result = INITDAG_UNDEFINED; result = INITDAG_UNDEFINED;
break; break;
} }
......
...@@ -125,17 +125,6 @@ constexpr const char *kSkippedMessages[] = { ...@@ -125,17 +125,6 @@ constexpr const char *kSkippedMessages[] = {
"UNASSIGNED-CoreValidation-Shader-InterfaceTypeMismatch", "UNASSIGNED-CoreValidation-Shader-InterfaceTypeMismatch",
// http://anglebug.com/4510 // http://anglebug.com/4510
"VUID-vkQueuePresentKHR-pWaitSemaphores-03268", "VUID-vkQueuePresentKHR-pWaitSemaphores-03268",
// http://anglebug.com/4572
"VUID-vkCmdCopyImageToBuffer-srcImage-01998",
// http://anglebug.com/4577
"VUID-vkCmdClearColorImage-image-01993",
// http://anglebug.com/4578 for next two
"VUID-vkCmdBlitImage-srcImage-01999",
"VUID-vkCmdBlitImage-filter-02001",
// http://anglebug.com/4579
"VUID-vkCmdBlitImage-dstImage-02000",
// http://anglebug.com/4580
"VUID-vkCmdResolveImage-dstImage-02003",
// http://anglebug.com/4583 // http://anglebug.com/4583
"VUID-VkGraphicsPipelineCreateInfo-blendEnable-02023", "VUID-VkGraphicsPipelineCreateInfo-blendEnable-02023",
}; };
......
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