From c8a065df12f533c7efab4e3cc763bf63ef8cc11f Mon Sep 17 00:00:00 2001 From: Philip Langdale Date: Sat, 3 Nov 2018 09:19:09 -0700 Subject: vo_gpu: vulkan: Always use KHR suffix types and defines I was inconsistent about this originally, as the functionality was moved into the core spec in 1.1 and so both suffixed and unsuffixed versions of everything exist and can be mixed together. There's no reason to fail to build with 1.0.39+ so I'm fixing the names. --- video/out/vulkan/ra_vk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video/out/vulkan/ra_vk.c') diff --git a/video/out/vulkan/ra_vk.c b/video/out/vulkan/ra_vk.c index 80019fa4bc..0516664e79 100644 --- a/video/out/vulkan/ra_vk.c +++ b/video/out/vulkan/ra_vk.c @@ -951,7 +951,7 @@ static bool ra_vk_mem_get_external_info(struct ra *ra, struct vk_memslice *mem, .memory = mem->vkmem, .handleType = IsWindows8OrGreater() ? VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_KHR - : VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT, + : VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_KHR, }; VK_LOAD_PFN(vkGetMemoryWin32HandleKHR); -- cgit v1.2.3