From a352723a893c96fd8aaf3694f2d3d5ce6c708334 Mon Sep 17 00:00:00 2001 From: Michael Lentine Date: Thu, 14 Apr 2016 14:46:28 -0500 Subject: layers: Remove error when only implicit dependencies are used. --- layers/core_validation.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'layers/core_validation.cpp') diff --git a/layers/core_validation.cpp b/layers/core_validation.cpp index 31a6ccb9..15191b5a 100644 --- a/layers/core_validation.cpp +++ b/layers/core_validation.cpp @@ -8827,8 +8827,7 @@ static bool CheckDependencyExists(const layer_data *my_data, const int subpass, std::unordered_set processed_nodes; if (FindDependency(subpass, dependent_subpasses[k], subpass_to_node, processed_nodes) || FindDependency(dependent_subpasses[k], subpass, subpass_to_node, processed_nodes)) { - // TODO: Verify against Valid Use section of spec - skip_call |= log_msg(my_data->report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, (VkDebugReportObjectTypeEXT)0, 0, + skip_call |= log_msg(my_data->report_data, VK_DEBUG_REPORT_WARNING_BIT_EXT, (VkDebugReportObjectTypeEXT)0, 0, __LINE__, DRAWSTATE_INVALID_RENDERPASS, "DS", "A dependency between subpasses %d and %d must exist but only an implicit one is specified.", subpass, dependent_subpasses[k]); -- cgit v1.2.3