diff options
author | Liam <byteslice@airmail.cc> | 2022-12-03 01:23:06 +0100 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-12-04 16:55:13 +0100 |
commit | ea56d8f388888c3231b13777b2f31b2037e3dedd (patch) | |
tree | c68102646cc260a301be9861edae471fa3590a5c /src/video_core | |
parent | vulkan_common: ensure all mandatory features are tested in feature report (diff) | |
download | yuzu-ea56d8f388888c3231b13777b2f31b2037e3dedd.tar yuzu-ea56d8f388888c3231b13777b2f31b2037e3dedd.tar.gz yuzu-ea56d8f388888c3231b13777b2f31b2037e3dedd.tar.bz2 yuzu-ea56d8f388888c3231b13777b2f31b2037e3dedd.tar.lz yuzu-ea56d8f388888c3231b13777b2f31b2037e3dedd.tar.xz yuzu-ea56d8f388888c3231b13777b2f31b2037e3dedd.tar.zst yuzu-ea56d8f388888c3231b13777b2f31b2037e3dedd.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/vulkan_common/vulkan_wrapper.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/vulkan_common/vulkan_wrapper.cpp b/src/video_core/vulkan_common/vulkan_wrapper.cpp index 1592d4184..143fe7652 100644 --- a/src/video_core/vulkan_common/vulkan_wrapper.cpp +++ b/src/video_core/vulkan_common/vulkan_wrapper.cpp @@ -195,8 +195,7 @@ void Load(VkDevice device, DeviceDispatch& dld) noexcept { // Support for timeline semaphores is mandatory in Vulkan 1.2 if (!dld.vkGetSemaphoreCounterValue) { - Proc(dld.vkGetSemaphoreCounterValue, dld, "vkGetSemaphoreCounterValue", device); - Proc(dld.vkWaitForFences, dld, "vkWaitForFencesKHR", device); + Proc(dld.vkGetSemaphoreCounterValue, dld, "vkGetSemaphoreCounterValueKHR", device); Proc(dld.vkWaitSemaphores, dld, "vkWaitSemaphoresKHR", device); } |