diff options
| author | Mark Lobodzinski <mark@lunarg.com> | 2017-01-31 10:34:28 -0700 |
|---|---|---|
| committer | Mark Lobodzinski <mark@lunarg.com> | 2017-01-31 10:34:28 -0700 |
| commit | dde4c07c8c3ff1df288e12e2c82a1b21665ff9c9 (patch) | |
| tree | 882fb42f42763270a5377e4169fb7d11b73fc51a | |
| parent | 33778517e01b0f718fe0e60b1aa853e5e3b8d0e4 (diff) | |
| download | usermoji-dde4c07c8c3ff1df288e12e2c82a1b21665ff9c9.tar.xz | |
vulkaninfo: Kill printed whitespace
Change-Id: I1e9d088d744bd1c4745a4c77ea75207f5350bf02
| -rw-r--r-- | demos/vulkaninfo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/vulkaninfo.c b/demos/vulkaninfo.c index 3e7e133e..73bdad92 100644 --- a/demos/vulkaninfo.c +++ b/demos/vulkaninfo.c @@ -1352,7 +1352,7 @@ static void AppGpuDumpMemoryProps(const struct AppGpu *gpu) { printf("=================================\n"); printf("\tmemoryTypeCount = %u\n", props->memoryTypeCount); for (uint32_t i = 0; i < props->memoryTypeCount; i++) { - printf("\tmemoryTypes[%u] : \n", i); + printf("\tmemoryTypes[%u] :\n", i); printf("\t\theapIndex = %u\n", props->memoryTypes[i].heapIndex); printf("\t\tpropertyFlags = 0x%" PRIxLEAST32 ":\n", props->memoryTypes[i].propertyFlags); @@ -1370,7 +1370,7 @@ static void AppGpuDumpMemoryProps(const struct AppGpu *gpu) { printf("\n"); printf("\tmemoryHeapCount = %u\n", props->memoryHeapCount); for (uint32_t i = 0; i < props->memoryHeapCount; i++) { - printf("\tmemoryHeaps[%u] : \n", i); + printf("\tmemoryHeaps[%u] :\n", i); const VkDeviceSize memSize = props->memoryHeaps[i].size; char *mem_size_human_readable = HumanReadable((const size_t)memSize); printf("\t\tsize = " PRINTF_SIZE_T_SPECIFIER " (0x%" PRIxLEAST64 ") (%s)\n", (size_t)memSize, memSize, @@ -1378,7 +1378,7 @@ static void AppGpuDumpMemoryProps(const struct AppGpu *gpu) { free(mem_size_human_readable); VkMemoryHeapFlags heap_flags = props->memoryHeaps[i].flags; - printf("\t\tflags: \n\t\t\t"); + printf("\t\tflags:\n\t\t\t"); printf((heap_flags & VK_MEMORY_HEAP_DEVICE_LOCAL_BIT) ? "VK_MEMORY_HEAP_DEVICE_LOCAL_BIT\n" : "None\n"); } fflush(stdout); |
