Просмотр исходного кода

vulkan_device: Return true if either depth/stencil format supports blit

On devices that don't support D24S8 but supports D32S8, this should still return true if D32S8 supports src and dst blit
Morph 3 лет назад
Родитель
Сommit
26658c2e93
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/video_core/vulkan_common/vulkan_device.cpp

+ 1 - 1
src/video_core/vulkan_common/vulkan_device.cpp

@@ -745,7 +745,7 @@ bool Device::TestDepthStencilBlits() const {
     const auto test_features = [](VkFormatProperties props) {
         return (props.optimalTilingFeatures & required_features) == required_features;
     };
-    return test_features(format_properties.at(VK_FORMAT_D32_SFLOAT_S8_UINT)) &&
+    return test_features(format_properties.at(VK_FORMAT_D32_SFLOAT_S8_UINT)) ||
            test_features(format_properties.at(VK_FORMAT_D24_UNORM_S8_UINT));
 }