aboutsummaryrefslogtreecommitdiff
path: root/layers/descriptor_sets.cpp
diff options
context:
space:
mode:
authorArtem Kharytoniuk <artemalive@gmail.com>2018-01-12 14:17:41 +0100
committerMike Weiblen <mikew@lunarg.com>2018-01-16 11:28:24 -0700
commit38393072df1f0f00b208b3273b9ec534513bd1b5 (patch)
treeb5e7473da38ff3482773a6c292c3fbc801646b9e /layers/descriptor_sets.cpp
parent05ba04f96a15f7e8b899e680aa9078bc7dedfc80 (diff)
downloadusermoji-38393072df1f0f00b208b3273b9ec534513bd1b5.tar.xz
layers: Fix typos in ValidateUpdateDescriptorSets
Diffstat (limited to 'layers/descriptor_sets.cpp')
-rw-r--r--layers/descriptor_sets.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/layers/descriptor_sets.cpp b/layers/descriptor_sets.cpp
index 4c1275ef..705ef3c6 100644
--- a/layers/descriptor_sets.cpp
+++ b/layers/descriptor_sets.cpp
@@ -1183,7 +1183,7 @@ bool cvdescriptorset::ValidateUpdateDescriptorSets(const debug_report_data *repo
if (!set_node->ValidateWriteUpdate(report_data, &p_wds[i], &error_code, &error_str)) {
skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT,
HandleToUint64(dest_set), __LINE__, error_code, "DS",
- "vkUpdateDescriptorsSets() failed write update validation for Descriptor Set 0x%" PRIx64
+ "vkUpdateDescriptorSets() failed write update validation for Descriptor Set 0x%" PRIx64
" with error: %s. %s",
HandleToUint64(dest_set), error_str.c_str(), validation_error_map[error_code]);
}
@@ -1203,7 +1203,7 @@ bool cvdescriptorset::ValidateUpdateDescriptorSets(const debug_report_data *repo
if (!dst_node->ValidateCopyUpdate(report_data, &p_cds[i], src_node, &error_code, &error_str)) {
skip |= log_msg(report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT,
HandleToUint64(dst_set), __LINE__, error_code, "DS",
- "vkUpdateDescriptorsSets() failed copy update from Descriptor Set 0x%" PRIx64
+ "vkUpdateDescriptorSets() failed copy update from Descriptor Set 0x%" PRIx64
" to Descriptor Set 0x%" PRIx64 " with error: %s. %s",
HandleToUint64(src_set), HandleToUint64(dst_set), error_str.c_str(), validation_error_map[error_code]);
}
@@ -1823,4 +1823,4 @@ cvdescriptorset::PrefilterBindRequestMap::PrefilterBindRequestMap(cvdescriptorse
filtered_map_.reset(new std::map<uint32_t, descriptor_req>());
ds.FilterAndTrackBindingReqs(cb_state, pipeline, orig_map_, filtered_map_.get());
}
-} \ No newline at end of file
+}