mono / VulkanSharp

Open source .NET binding for the Vulkan API
MIT License
537 stars 61 forks source link

PhysicalDeviceMemoryProperties does not match specs #19

Closed TillAlex closed 8 years ago

TillAlex commented 8 years ago

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.

TillAlex commented 8 years ago

Thanks a lot!