vk/vulkan.h: Reformat structs to match revision 130
authorJason Ekstrand <jason.ekstrand@intel.com>
Mon, 6 Jul 2015 22:19:04 +0000 (15:19 -0700)
committerJason Ekstrand <jason.ekstrand@intel.com>
Mon, 6 Jul 2015 22:19:12 +0000 (15:19 -0700)
commit0dc7d4ac8afd939108e128d1013e1803b48d92a5
tree2b515802805afcfdebe59fc4378ac2063ecadae6
parent19aabb573039b6979364580b48cad5a3c9920e84
vk/vulkan.h: Reformat structs to match revision 130

Structs in the old version were specified as

typedef struct VkSomeThing_
{
   type                                        field; // comment
} VkSomeThing;

However, in the generated headers, you have

typedef struct {
   type                                        field;
} VkSomeThing;

This commit also removes some unneeded whitespaces.
include/vulkan/vulkan.h