diff options
Diffstat (limited to 'layers/descriptor_sets.cpp')
| -rw-r--r-- | layers/descriptor_sets.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/layers/descriptor_sets.cpp b/layers/descriptor_sets.cpp index 00c0d194..9b20638b 100644 --- a/layers/descriptor_sets.cpp +++ b/layers/descriptor_sets.cpp @@ -323,14 +323,19 @@ cvdescriptorset::DescriptorSet::~DescriptorSet() { } -static char const * string_descriptor_req_view_type(descriptor_req req) { +static std::string string_descriptor_req_view_type(descriptor_req req) { + std::string result(""); for (unsigned i = 0; i <= VK_IMAGE_VIEW_TYPE_END_RANGE; i++) { if (req & (1 << i)) { - return string_VkImageViewType(VkImageViewType(i)); + if (result.size()) result += ", "; + result += string_VkImageViewType(VkImageViewType(i)); } } - return "(none)"; + if (!result.size()) + result = "(none)"; + + return result; } |
