aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Giessen <charles@lunarg.com>2020-06-02 11:20:12 -0600
committerCharles Giessen <46324611+charles-lunarg@users.noreply.github.com>2020-06-02 12:11:28 -0600
commit322784a873be43731be6eca906cbfc895fe59f00 (patch)
tree5146f1e92c1dac220fc3ce652f1acc69a979845f
parent2bc4fcd9eba505d867cc83cdc4401e427399ed8f (diff)
downloadusermoji-322784a873be43731be6eca906cbfc895fe59f00.tar.xz
vulkaninfo: fix indent with for present support
Change-Id: I6fafdfac5d508cb02026c4cf1d1dbf7adf866bd4
-rw-r--r--vulkaninfo/vulkaninfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vulkaninfo/vulkaninfo.cpp b/vulkaninfo/vulkaninfo.cpp
index ede784be..68d4131e 100644
--- a/vulkaninfo/vulkaninfo.cpp
+++ b/vulkaninfo/vulkaninfo.cpp
@@ -377,7 +377,7 @@ void GpuDumpQueueProps(Printer &p, std::vector<SurfaceExtension> &surfaces, AppQ
p.PrintKeyValue("timestampValidBits", queue.props.timestampValidBits, 27);
if (queue.is_present_platform_agnostic) {
- p.PrintKeyString("present support", queue.platforms_support_present ? "true" : "false");
+ p.PrintKeyString("present support", queue.platforms_support_present ? "true" : "false", 27);
} else {
size_t width = 0;
for (auto &surface : surfaces) {