aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobin Ehlis <tobine@google.com>2016-09-06 20:37:39 -0600
committerTobin Ehlis <tobine@google.com>2016-09-07 09:25:26 -0600
commitecdb4bccf3f74ec19b8ee61691cf89defd2c1fbe (patch)
tree968e20bb390c4c9fd54b01f8645a80e29b703a6f
parentcc9aaf2690a806c4610251840a9358f8cdd5f07e (diff)
downloadusermoji-ecdb4bccf3f74ec19b8ee61691cf89defd2c1fbe.tar.xz
layers: Print framebuffer object type
Distinguish "framebuffer" object type from "buffer" when printing object type for output messages.
-rw-r--r--layers/core_validation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/core_validation.cpp b/layers/core_validation.cpp
index 24190dac..b57db94c 100644
--- a/layers/core_validation.cpp
+++ b/layers/core_validation.cpp
@@ -453,7 +453,7 @@ static const char *object_type_to_string(VkDebugReportObjectTypeEXT type) {
case VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT:
return "descriptor set";
case VK_DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT:
- return "buffer";
+ return "framebuffer";
case VK_DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT:
return "event";
case VK_DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT: