mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-11-29 10:24:10 +01:00
[dxvk] Fix loading vkAcquireFullScreenExclusiveModeEXT etc.
We're not using those functions, but these are device functions, not instance functions. vkGetPhysicalDeviceSurfacePresentModes2EXT appears to be an instance function. Found while investigating #1324.
This commit is contained in:
parent
8b9c03ce76
commit
b376417f20
@ -141,9 +141,6 @@ namespace dxvk::vk {
|
||||
|
||||
#ifdef VK_EXT_full_screen_exclusive
|
||||
VULKAN_FN(vkGetPhysicalDeviceSurfacePresentModes2EXT);
|
||||
VULKAN_FN(vkAcquireFullScreenExclusiveModeEXT);
|
||||
VULKAN_FN(vkReleaseFullScreenExclusiveModeEXT);
|
||||
VULKAN_FN(vkGetDeviceGroupSurfacePresentModes2EXT);
|
||||
#endif
|
||||
};
|
||||
|
||||
@ -316,6 +313,12 @@ namespace dxvk::vk {
|
||||
VULKAN_FN(vkCmdEndConditionalRenderingEXT);
|
||||
#endif
|
||||
|
||||
#ifdef VK_EXT_full_screen_exclusive
|
||||
VULKAN_FN(vkAcquireFullScreenExclusiveModeEXT);
|
||||
VULKAN_FN(vkReleaseFullScreenExclusiveModeEXT);
|
||||
VULKAN_FN(vkGetDeviceGroupSurfacePresentModes2EXT);
|
||||
#endif
|
||||
|
||||
#ifdef VK_EXT_host_query_reset
|
||||
VULKAN_FN(vkResetQueryPoolEXT);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user