diff options
| author | David Pinedo <david@lunarg.com> | 2015-10-19 15:22:28 -0600 |
|---|---|---|
| committer | David Pinedo <david@lunarg.com> | 2015-10-19 15:28:45 -0600 |
| commit | 0e88ffc76121a83826ab1a5d4d9db545be36b840 (patch) | |
| tree | a2afe30d423ad6be2c72946975a1f0df1a1bc639 | |
| parent | 81788d723e9dd2fc18e8b652e86198cb28546f80 (diff) | |
| download | usermoji-0e88ffc76121a83826ab1a5d4d9db545be36b840.tar.xz | |
demos: fix tabs and line endings in vulkaninfo
| -rw-r--r-- | demos/vulkaninfo.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/demos/vulkaninfo.c b/demos/vulkaninfo.c index 9e907d60..7270fe57 100644 --- a/demos/vulkaninfo.c +++ b/demos/vulkaninfo.c @@ -1058,17 +1058,17 @@ static void app_gpu_dump(const struct app_gpu *gpu) int main(int argc, char **argv) { - unsigned int major, minor, patch; - struct app_gpu gpus[MAX_GPUS]; + unsigned int major, minor, patch; + struct app_gpu gpus[MAX_GPUS]; VkPhysicalDevice objs[MAX_GPUS]; uint32_t gpu_count, i; VkResult err; struct app_instance inst; - major = VK_API_VERSION >> 22;
- minor = (VK_API_VERSION >> 12) & 0x4ff;
- patch = VK_API_VERSION & 0xfff;
- printf("===========\n");
+ major = VK_API_VERSION >> 22; + minor = (VK_API_VERSION >> 12) & 0x4ff; + patch = VK_API_VERSION & 0xfff; + printf("===========\n"); printf("VULKAN INFO\n"); printf("===========\n\n"); printf("Vulkan API Version: %d %d %d\n\n", major, minor, patch); |
