summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/video_core/vulkan_common/vulkan_device.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp
index 697cb16b9..230b8717b 100644
--- a/src/video_core/vulkan_common/vulkan_device.cpp
+++ b/src/video_core/vulkan_common/vulkan_device.cpp
@@ -294,6 +294,15 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR
294 }; 294 };
295 SetNext(next, bit8_storage); 295 SetNext(next, bit8_storage);
296 296
297 VkPhysicalDeviceRobustness2FeaturesEXT robustness2{
298 .sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ROBUSTNESS_2_FEATURES_EXT,
299 .pNext = nullptr,
300 .robustBufferAccess2 = true,
301 .robustImageAccess2 = true,
302 .nullDescriptor = true,
303 };
304 SetNext(next, robustness2);
305
297 VkPhysicalDeviceHostQueryResetFeaturesEXT host_query_reset{ 306 VkPhysicalDeviceHostQueryResetFeaturesEXT host_query_reset{
298 .sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_HOST_QUERY_RESET_FEATURES_EXT, 307 .sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_HOST_QUERY_RESET_FEATURES_EXT,
299 .pNext = nullptr, 308 .pNext = nullptr,