In the generator I found that fixed array of structs is not implemented yet. Furthermore non numeric sizes like VK_MAX_MEMORY_TYPES are not parsed yet. This is quite a show stopper because querying vkGetPhysicalDeviceMemoryProperties is not possible yet.
Reading the specs I found that PhysicalDeviceMemoryProperties should have:
VkMemoryType memoryTypes[VK_MAX_MEMORY_TYPES]; VkMemoryHeap memoryHeaps[VK_MAX_MEMORY_HEAPS];
In the generator I found that fixed array of structs is not implemented yet. Furthermore non numeric sizes like VK_MAX_MEMORY_TYPES are not parsed yet. This is quite a show stopper because querying vkGetPhysicalDeviceMemoryProperties is not possible yet.