diff options
| author | 2022-12-02 17:27:27 -0500 | |
|---|---|---|
| committer | 2022-12-04 10:55:13 -0500 | |
| commit | 06a67d2bbd346b258b72b926cf5e8a463a29c237 (patch) | |
| tree | 5cc38fea26b6bdd03614f93b46f9c45f49de4121 | |
| parent | vulkan_common: unsuffix timeline semaphore feature test structure (diff) | |
| download | yuzu-06a67d2bbd346b258b72b926cf5e8a463a29c237.tar.gz yuzu-06a67d2bbd346b258b72b926cf5e8a463a29c237.tar.xz yuzu-06a67d2bbd346b258b72b926cf5e8a463a29c237.zip | |
vulkan_common: unsuffix 16-bit storage feature test structure
| -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 17508e558..267b182fb 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp | |||
| @@ -406,8 +406,8 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR | |||
| 406 | }; | 406 | }; |
| 407 | SetNext(next, timeline_semaphore); | 407 | SetNext(next, timeline_semaphore); |
| 408 | 408 | ||
| 409 | VkPhysicalDevice16BitStorageFeaturesKHR bit16_storage{ | 409 | VkPhysicalDevice16BitStorageFeatures bit16_storage{ |
| 410 | .sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES_KHR, | 410 | .sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES, |
| 411 | .pNext = nullptr, | 411 | .pNext = nullptr, |
| 412 | .storageBuffer16BitAccess = true, | 412 | .storageBuffer16BitAccess = true, |
| 413 | .uniformAndStorageBuffer16BitAccess = true, | 413 | .uniformAndStorageBuffer16BitAccess = true, |