diff options
| author | 2022-12-02 19:23:06 -0500 | |
|---|---|---|
| committer | 2022-12-04 10:55:13 -0500 | |
| commit | ea56d8f388888c3231b13777b2f31b2037e3dedd (patch) | |
| tree | c68102646cc260a301be9861edae471fa3590a5c /src | |
| parent | vulkan_common: ensure all mandatory features are tested in feature report (diff) | |
| download | yuzu-ea56d8f388888c3231b13777b2f31b2037e3dedd.tar.gz yuzu-ea56d8f388888c3231b13777b2f31b2037e3dedd.tar.xz yuzu-ea56d8f388888c3231b13777b2f31b2037e3dedd.zip | |
vulkan_common: correct usage of timeline semaphore fallbacks
Diffstat (limited to 'src')
| -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 { | |||
| 195 | 195 | ||
| 196 | // Support for timeline semaphores is mandatory in Vulkan 1.2 | 196 | // Support for timeline semaphores is mandatory in Vulkan 1.2 |
| 197 | if (!dld.vkGetSemaphoreCounterValue) { | 197 | if (!dld.vkGetSemaphoreCounterValue) { |
| 198 | Proc(dld.vkGetSemaphoreCounterValue, dld, "vkGetSemaphoreCounterValue", device); | 198 | Proc(dld.vkGetSemaphoreCounterValue, dld, "vkGetSemaphoreCounterValueKHR", device); |
| 199 | Proc(dld.vkWaitForFences, dld, "vkWaitForFencesKHR", device); | ||
| 200 | Proc(dld.vkWaitSemaphores, dld, "vkWaitSemaphoresKHR", device); | 199 | Proc(dld.vkWaitSemaphores, dld, "vkWaitSemaphoresKHR", device); |
| 201 | } | 200 | } |
| 202 | 201 | ||