diff options
| author | Courtney Goeltzenleuchter <courtneygo@google.com> | 2015-12-01 09:53:13 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2015-12-17 11:20:06 -0700 |
| commit | 618cfdbfaaa8e053290597097adef6dfbaf78e46 (patch) | |
| tree | d01b4e1d0af9b5d48de5c28885701f361e496f21 | |
| parent | 7d9d644a2e0f982f737551f6344da9df3fbb75cf (diff) | |
| download | usermoji-618cfdbfaaa8e053290597097adef6dfbaf78e46.tar.xz | |
vkinfo: Clean up output formatting
| -rw-r--r-- | demos/vulkaninfo.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/demos/vulkaninfo.c b/demos/vulkaninfo.c index c76ee149..7a4d6ae4 100644 --- a/demos/vulkaninfo.c +++ b/demos/vulkaninfo.c @@ -998,11 +998,8 @@ static void app_dump_extensions( for (i=0; i< extension_count; i++) { VkExtensionProperties const *ext_prop = &extension_properties[i]; - if (i>0) - printf("\n"); // separator between extensions - printf("%s\t", indent); - printf("%-32s: extension revision %2d", + printf("%-32s: extension revision %2d\n", ext_prop->extensionName, ext_prop->specVersion); } printf("\n"); |
