diff options
| author | 2022-12-02 17:23:43 -0500 | |
|---|---|---|
| committer | 2022-12-04 10:55:13 -0500 | |
| commit | bbc1809951c8b41e7b2c01c3852092d5c7882d48 (patch) | |
| tree | e19387650dac4ea0b2ef6e746681427e35cbdf1e /src | |
| parent | vulkan_common: add logicOp to feature report (diff) | |
| download | yuzu-bbc1809951c8b41e7b2c01c3852092d5c7882d48.tar.gz yuzu-bbc1809951c8b41e7b2c01c3852092d5c7882d48.tar.xz yuzu-bbc1809951c8b41e7b2c01c3852092d5c7882d48.zip | |
vulkan_common: unsuffix timeline semaphore feature test structure
Diffstat (limited to 'src')
| -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 | |||
| 399 | const void* first_next = &features2; | 399 | const void* first_next = &features2; |
| 400 | void** next = &features2.pNext; | 400 | void** next = &features2.pNext; |
| 401 | 401 | ||
| 402 | VkPhysicalDeviceTimelineSemaphoreFeaturesKHR timeline_semaphore{ | 402 | VkPhysicalDeviceTimelineSemaphoreFeatures timeline_semaphore{ |
| 403 | .sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_FEATURES_KHR, | 403 | .sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_FEATURES, |
| 404 | .pNext = nullptr, | 404 | .pNext = nullptr, |
| 405 | .timelineSemaphore = true, | 405 | .timelineSemaphore = true, |
| 406 | }; | 406 | }; |