diff options
| author | Chris Forbes <chrisforbes@google.com> | 2016-04-04 19:19:47 +1200 |
|---|---|---|
| committer | Tobin Ehlis <tobine@google.com> | 2016-04-04 08:55:17 -0600 |
| commit | a88c4b896a0fa25c9935071bfac96f5c5581ad41 (patch) | |
| tree | 37501c8e0d54af99668bde5756b86ec39a34227f | |
| parent | 645dc5b3ef30729e3cc8d17d3fd95fb8c7b5bb9b (diff) | |
| download | usermoji-a88c4b896a0fa25c9935071bfac96f5c5581ad41.tar.xz | |
tests: Add test case for patch decoration mismatch
Signed-off-by: Chris Forbes <chrisforbes@google.com>
| -rw-r--r-- | layers/core_validation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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)) { |
