randallrvr
randallrvr
I believe its 1.3.268, whatever was installed with the SDK. Do I have use the headers from the Vulkan-Headers repo in order to get the Vulkan-Utility-Libraries to work?
I see that a new SDK was released same day as my question, I've updated, but it doesn't help with my Android builds which are utilizing the headers inside the...
That's too bad, I was primarily wanting to use `vk_format_utils.h`, which has few enough errors I've just made a local copy and `#ifdef`'d out the troublesome defines. There's way too...
I just mean, putting `#ifdef`'s around `#define`'s that were not actually defined, e.g. ```c++ #ifdef VK_FORMAT_A1B5G5R5_UNORM_PACK16_KHR case VK_FORMAT_A1B5G5R5_UNORM_PACK16_KHR: { struct VKU_FORMAT_INFO out = {VKU_FORMAT_COMPATIBILITY_CLASS_16BIT, 2, 1, {1, 1, 1}, 4,...
> If you are getting Vulkan-Utility-Libraries from github, then you should also be getting the Vulkan-Headers from github This goes back to my earlier question, is this still true for...
Got it, thanks, I'll have to give a try then.
Is the intention that people use Vulkan-Utility-Libraries instead of the files included with SDKs? My main motivation was to avoid the platform #ifdef that was required because vk_enum_string_helper.h was missing...