From: Charles Giessen Date: Tue, 2 Jun 2020 17:20:12 +0000 (-0600) Subject: vulkaninfo: fix indent with for present support X-Git-Tag: upstream/1.2.179~90 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=322784a873be43731be6eca906cbfc895fe59f00;p=platform%2Fupstream%2FVulkan-Tools.git vulkaninfo: fix indent with for present support Change-Id: I6fafdfac5d508cb02026c4cf1d1dbf7adf866bd4 --- diff --git a/vulkaninfo/vulkaninfo.cpp b/vulkaninfo/vulkaninfo.cpp index ede784b..68d4131 100644 --- a/vulkaninfo/vulkaninfo.cpp +++ b/vulkaninfo/vulkaninfo.cpp @@ -377,7 +377,7 @@ void GpuDumpQueueProps(Printer &p, std::vector &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) {