Rene Lindsay
Rene Lindsay
I'm using a custom loader called vulkan_wrapper.h/cpp, instead of volk, but they are very similar, so I'm suffering from the same issue. The problem is, custom loaders come with their...
When vulkan_wrapper is used, it defines VK_NO_PROTOTYPES, to prevent conflicts with vulkan.h. However, this triggers your loader to define prototypes as well, which reintroduces conflicts. To prevent this, you could...
Hi Gabriel, You are correct, it compiles correctly when using the develop branch of nana. Thank you for the help Rene