From a88c4b896a0fa25c9935071bfac96f5c5581ad41 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Mon, 4 Apr 2016 19:19:47 +1200 Subject: [PATCH] tests: Add test case for patch decoration mismatch Signed-off-by: Chris Forbes --- layers/core_validation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layers/core_validation.cpp b/layers/core_validation.cpp index 70d2bf77..52d04cb1 100644 --- a/layers/core_validation.cpp +++ b/layers/core_validation.cpp @@ -1640,7 +1640,7 @@ static bool validate_interface_between_stages(layer_data *my_data, shader_module if (a_it->second.is_patch != b_it->second.is_patch) { if (log_msg(my_data->report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT, /*dev*/ 0, __LINE__, SHADER_CHECKER_INTERFACE_TYPE_MISMATCH, "SC", - "Decoration mismatch on location %u.%u: is per-%s in %s stage but" + "Decoration mismatch on location %u.%u: is per-%s in %s stage but " "per-%s in %s stage", a_first.first, a_first.second, a_it->second.is_patch ? "patch" : "vertex", producer_stage->name, b_it->second.is_patch ? "patch" : "vertex", consumer_stage->name)) { -- 2.34.1