Merge pull request #57836 from BastiaanOlij/deprecated_vulkan_macros

This commit is contained in:
Rémi Verschelde 2022-02-09 08:16:49 +01:00 committed by GitHub
commit d435c51cda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -273,9 +273,9 @@ Error VulkanContext::_obtain_vulkan_version() {
uint32_t api_version;
VkResult res = func(&api_version);
if (res == VK_SUCCESS) {
vulkan_major = VK_VERSION_MAJOR(api_version);
vulkan_minor = VK_VERSION_MINOR(api_version);
vulkan_patch = VK_VERSION_PATCH(api_version);
vulkan_major = VK_API_VERSION_MAJOR(api_version);
vulkan_minor = VK_API_VERSION_MINOR(api_version);
vulkan_patch = VK_API_VERSION_PATCH(api_version);
} else {
// according to the documentation this shouldn't fail with anything except a memory allocation error
// in which case we're in deep trouble anyway