[vulkan] Set kApiVersion to VK_API_VERSION_1_3 #4958
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This change fixes issue #4900. On certain AMD GPUs (such as RX 5500), the Vullkan version needs to be 1.3 in order for Volk to correctly populate the "vkGetDeviceBufferMemoryRequirements" function pointer. If the version is 1.2, the pointer will be NULL and cause an assertion failure.
Tested by running the voxel challenge program and see the program working as expected on a Windows PC.
According to the manual page, this function appears to be from Vulkan 1.3, and as such I guess kApiVersion would need to be set to 1.3 as well. I'm not sure if this means legacy devices would be excluded?
Related issue = #4900 #4951