summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar ameerj2021-08-29 01:52:09 -0400
committerGravatar ameerj2021-08-29 02:03:36 -0400
commit27f8f3333f8e87e87c7b7dfebdc466bb96ab0a48 (patch)
tree3c4d2b8e421252c5f674606d9d9ab372b1552ee8
parentvk_swapchain: Prefer linear swapchain format when presenting sRGB images (diff)
downloadyuzu-27f8f3333f8e87e87c7b7dfebdc466bb96ab0a48.tar.gz
yuzu-27f8f3333f8e87e87c7b7dfebdc466bb96ab0a48.tar.xz
yuzu-27f8f3333f8e87e87c7b7dfebdc466bb96ab0a48.zip
vulkan_device: Enable VK_KHR_swapchain_mutable_format if available
Silences validation errors when creating sRGB image views of linear swapchain images
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_vulkan/vk_swapchain.cpp11
-rw-r--r--src/video_core/vulkan_common/vulkan_device.cpp10
-rw-r--r--src/video_core/vulkan_common/vulkan_device.h6
3 files changed, 27 insertions, 0 deletions
diff --git a/src/video_core/renderer_vulkan/vk_swapchain.cpp b/src/video_core/renderer_vulkan/vk_swapchain.cpp
index d0a731660..e5318e52d 100644
--- a/src/video_core/renderer_vulkan/vk_swapchain.cpp
+++ b/src/video_core/renderer_vulkan/vk_swapchain.cpp
@@ -179,6 +179,17 @@ void VKSwapchain::CreateSwapchain(const VkSurfaceCapabilitiesKHR& capabilities,
179 swapchain_ci.queueFamilyIndexCount = static_cast<u32>(queue_indices.size()); 179 swapchain_ci.queueFamilyIndexCount = static_cast<u32>(queue_indices.size());
180 swapchain_ci.pQueueFamilyIndices = queue_indices.data(); 180 swapchain_ci.pQueueFamilyIndices = queue_indices.data();
181 } 181 }
182 static constexpr std::array view_formats{VK_FORMAT_B8G8R8A8_UNORM, VK_FORMAT_B8G8R8A8_SRGB};
183 VkImageFormatListCreateInfo format_list{
184 .sType = VK_STRUCTURE_TYPE_IMAGE_FORMAT_LIST_CREATE_INFO_KHR,
185 .pNext = nullptr,
186 .viewFormatCount = static_cast<u32>(view_formats.size()),
187 .pViewFormats = view_formats.data(),
188 };
189 if (device.IsKhrSwapchainMutableFormatEnabled()) {
190 format_list.pNext = std::exchange(swapchain_ci.pNext, &format_list);
191 swapchain_ci.flags |= VK_SWAPCHAIN_CREATE_MUTABLE_FORMAT_BIT_KHR;
192 }
182 // Request the size again to reduce the possibility of a TOCTOU race condition. 193 // Request the size again to reduce the possibility of a TOCTOU race condition.
183 const auto updated_capabilities = physical_device.GetSurfaceCapabilitiesKHR(surface); 194 const auto updated_capabilities = physical_device.GetSurfaceCapabilitiesKHR(surface);
184 swapchain_ci.imageExtent = ChooseSwapExtent(updated_capabilities, width, height); 195 swapchain_ci.imageExtent = ChooseSwapExtent(updated_capabilities, width, height);
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp
index 86ca4be54..24821c1a3 100644
--- a/src/video_core/vulkan_common/vulkan_device.cpp
+++ b/src/video_core/vulkan_common/vulkan_device.cpp
@@ -839,6 +839,8 @@ std::vector<const char*> Device::LoadExtensions(bool requires_surface) {
839 bool has_khr_shader_float16_int8{}; 839 bool has_khr_shader_float16_int8{};
840 bool has_khr_workgroup_memory_explicit_layout{}; 840 bool has_khr_workgroup_memory_explicit_layout{};
841 bool has_khr_pipeline_executable_properties{}; 841 bool has_khr_pipeline_executable_properties{};
842 bool has_khr_image_format_list{};
843 bool has_khr_swapchain_mutable_format{};
842 bool has_ext_subgroup_size_control{}; 844 bool has_ext_subgroup_size_control{};
843 bool has_ext_transform_feedback{}; 845 bool has_ext_transform_feedback{};
844 bool has_ext_custom_border_color{}; 846 bool has_ext_custom_border_color{};
@@ -888,6 +890,9 @@ std::vector<const char*> Device::LoadExtensions(bool requires_surface) {
888 test(has_ext_shader_atomic_int64, VK_KHR_SHADER_ATOMIC_INT64_EXTENSION_NAME, false); 890 test(has_ext_shader_atomic_int64, VK_KHR_SHADER_ATOMIC_INT64_EXTENSION_NAME, false);
889 test(has_khr_workgroup_memory_explicit_layout, 891 test(has_khr_workgroup_memory_explicit_layout,
890 VK_KHR_WORKGROUP_MEMORY_EXPLICIT_LAYOUT_EXTENSION_NAME, false); 892 VK_KHR_WORKGROUP_MEMORY_EXPLICIT_LAYOUT_EXTENSION_NAME, false);
893 test(has_khr_image_format_list, VK_KHR_IMAGE_FORMAT_LIST_EXTENSION_NAME, false);
894 test(has_khr_swapchain_mutable_format, VK_KHR_SWAPCHAIN_MUTABLE_FORMAT_EXTENSION_NAME,
895 false);
891 test(has_ext_line_rasterization, VK_EXT_LINE_RASTERIZATION_EXTENSION_NAME, false); 896 test(has_ext_line_rasterization, VK_EXT_LINE_RASTERIZATION_EXTENSION_NAME, false);
892 if (Settings::values.enable_nsight_aftermath) { 897 if (Settings::values.enable_nsight_aftermath) {
893 test(nv_device_diagnostics_config, VK_NV_DEVICE_DIAGNOSTICS_CONFIG_EXTENSION_NAME, 898 test(nv_device_diagnostics_config, VK_NV_DEVICE_DIAGNOSTICS_CONFIG_EXTENSION_NAME,
@@ -1066,6 +1071,11 @@ std::vector<const char*> Device::LoadExtensions(bool requires_surface) {
1066 khr_pipeline_executable_properties = true; 1071 khr_pipeline_executable_properties = true;
1067 } 1072 }
1068 } 1073 }
1074 if (has_khr_image_format_list && has_khr_swapchain_mutable_format) {
1075 extensions.push_back(VK_KHR_IMAGE_FORMAT_LIST_EXTENSION_NAME);
1076 extensions.push_back(VK_KHR_SWAPCHAIN_MUTABLE_FORMAT_EXTENSION_NAME);
1077 khr_swapchain_mutable_format = true;
1078 }
1069 if (khr_push_descriptor) { 1079 if (khr_push_descriptor) {
1070 VkPhysicalDevicePushDescriptorPropertiesKHR push_descriptor; 1080 VkPhysicalDevicePushDescriptorPropertiesKHR push_descriptor;
1071 push_descriptor.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PUSH_DESCRIPTOR_PROPERTIES_KHR; 1081 push_descriptor.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PUSH_DESCRIPTOR_PROPERTIES_KHR;
diff --git a/src/video_core/vulkan_common/vulkan_device.h b/src/video_core/vulkan_common/vulkan_device.h
index 234d74129..5599c38c5 100644
--- a/src/video_core/vulkan_common/vulkan_device.h
+++ b/src/video_core/vulkan_common/vulkan_device.h
@@ -224,6 +224,11 @@ public:
224 return khr_pipeline_executable_properties; 224 return khr_pipeline_executable_properties;
225 } 225 }
226 226
227 /// Returns true if VK_KHR_swapchain_mutable_format is enabled.
228 bool IsKhrSwapchainMutableFormatEnabled() const {
229 return khr_swapchain_mutable_format;
230 }
231
227 /// Returns true if the device supports VK_KHR_workgroup_memory_explicit_layout. 232 /// Returns true if the device supports VK_KHR_workgroup_memory_explicit_layout.
228 bool IsKhrWorkgroupMemoryExplicitLayoutSupported() const { 233 bool IsKhrWorkgroupMemoryExplicitLayoutSupported() const {
229 return khr_workgroup_memory_explicit_layout; 234 return khr_workgroup_memory_explicit_layout;
@@ -390,6 +395,7 @@ private:
390 bool khr_workgroup_memory_explicit_layout{}; ///< Support for explicit workgroup layouts. 395 bool khr_workgroup_memory_explicit_layout{}; ///< Support for explicit workgroup layouts.
391 bool khr_push_descriptor{}; ///< Support for VK_KHR_push_descritor. 396 bool khr_push_descriptor{}; ///< Support for VK_KHR_push_descritor.
392 bool khr_pipeline_executable_properties{}; ///< Support for executable properties. 397 bool khr_pipeline_executable_properties{}; ///< Support for executable properties.
398 bool khr_swapchain_mutable_format{}; ///< Support for VK_KHR_swapchain_mutable_format.
393 bool ext_index_type_uint8{}; ///< Support for VK_EXT_index_type_uint8. 399 bool ext_index_type_uint8{}; ///< Support for VK_EXT_index_type_uint8.
394 bool ext_sampler_filter_minmax{}; ///< Support for VK_EXT_sampler_filter_minmax. 400 bool ext_sampler_filter_minmax{}; ///< Support for VK_EXT_sampler_filter_minmax.
395 bool ext_depth_range_unrestricted{}; ///< Support for VK_EXT_depth_range_unrestricted. 401 bool ext_depth_range_unrestricted{}; ///< Support for VK_EXT_depth_range_unrestricted.