Closed ib00 closed 2 years ago
I am using volk (https://github.com/zeux/volk) as a Vulkan loader.
When using your queue selector, I see that you need to specify appropriate functions in VqsVulkanFunctions. How does that play with loaders like volk?
Since volk simply loads vulkan functions to global function pointers,
VqsVulkanFunctions functions = { vkGetPhysicalDeviceQueueFamilyProperties, vkGetPhysicalDeviceSurfaceSupportKHR };
could work.
I am using volk (https://github.com/zeux/volk) as a Vulkan loader.
When using your queue selector, I see that you need to specify appropriate functions in VqsVulkanFunctions. How does that play with loaders like volk?