diff options
| author | Mike Weiblen <mikew@lunarg.com> | 2016-10-03 19:19:41 -0600 |
|---|---|---|
| committer | Mike Weiblen <mikew@lunarg.com> | 2016-10-05 17:52:31 -0600 |
| commit | d7aebf8639191ba2c859414ca642104e8150c432 (patch) | |
| tree | af765e57627529f6a865e1ea8c1c432d9f644442 /layers/core_validation.cpp | |
| parent | 94decf7327ef2530cb7b623a2d261df21be4fa55 (diff) | |
| download | usermoji-d7aebf8639191ba2c859414ca642104e8150c432.tar.xz | |
layers: Change 'VS' to 'vertex shader'
Change-Id: Ib9b20635225528d2fd6d012e6487d95f27a0f95d
Diffstat (limited to 'layers/core_validation.cpp')
| -rw-r--r-- | layers/core_validation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/layers/core_validation.cpp b/layers/core_validation.cpp index d89daab1..4ae50c71 100644 --- a/layers/core_validation.cpp +++ b/layers/core_validation.cpp @@ -1981,7 +1981,7 @@ static bool validate_vi_against_vs_inputs(debug_report_data *report_data, VkPipe it_a++; } else if (!b_at_end && (a_at_end || b_first < a_first)) { if (log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT, /*dev*/ 0, - __LINE__, SHADER_CHECKER_INPUT_NOT_PRODUCED, "SC", "VS consumes input at location %d but not provided", + __LINE__, SHADER_CHECKER_INPUT_NOT_PRODUCED, "SC", "Vertex shader consumes input at location %d but not provided", b_first)) { pass = false; } @@ -1994,7 +1994,7 @@ static bool validate_vi_against_vs_inputs(debug_report_data *report_data, VkPipe if (attrib_type != FORMAT_TYPE_UNDEFINED && input_type != FORMAT_TYPE_UNDEFINED && attrib_type != input_type) { if (log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VkDebugReportObjectTypeEXT(0), 0, __LINE__, SHADER_CHECKER_INTERFACE_TYPE_MISMATCH, "SC", - "Attribute type of `%s` at location %d does not match VS input type of `%s`", + "Attribute type of `%s` at location %d does not match vertex shader input type of `%s`", string_VkFormat(it_a->second->format), a_first, describe_type(vs, it_b->second.type_id).c_str())) { pass = false; |
