diff options
author | Liam <byteslice@airmail.cc> | 2022-12-02 23:23:43 +0100 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-12-04 16:55:13 +0100 |
commit | bbc1809951c8b41e7b2c01c3852092d5c7882d48 (patch) | |
tree | e19387650dac4ea0b2ef6e746681427e35cbdf1e /src | |
parent | vulkan_common: add logicOp to feature report (diff) | |
download | yuzu-bbc1809951c8b41e7b2c01c3852092d5c7882d48.tar yuzu-bbc1809951c8b41e7b2c01c3852092d5c7882d48.tar.gz yuzu-bbc1809951c8b41e7b2c01c3852092d5c7882d48.tar.bz2 yuzu-bbc1809951c8b41e7b2c01c3852092d5c7882d48.tar.lz yuzu-bbc1809951c8b41e7b2c01c3852092d5c7882d48.tar.xz yuzu-bbc1809951c8b41e7b2c01c3852092d5c7882d48.tar.zst yuzu-bbc1809951c8b41e7b2c01c3852092d5c7882d48.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/vulkan_common/vulkan_device.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp index 4ed6ecc61..17508e558 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp @@ -399,8 +399,8 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR const void* first_next = &features2; void** next = &features2.pNext; - VkPhysicalDeviceTimelineSemaphoreFeaturesKHR timeline_semaphore{ - .sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_FEATURES_KHR, + VkPhysicalDeviceTimelineSemaphoreFeatures timeline_semaphore{ + .sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_FEATURES, .pNext = nullptr, .timelineSemaphore = true, }; |