Преглед изворни кода

vulkan_device: Remove requirement on shaderStorageImageMultisample

yuzu doesn't currently emulate MS image stores. Requiring this makes no
sense for now. Fixes ANV not booting any games on Vulkan.
ReinUsesLisp пре 5 година
родитељ
комит
d9a15a935b
1 измењених фајлова са 0 додато и 1 уклоњено
  1. 0 1
      src/video_core/vulkan_common/vulkan_device.cpp

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

@@ -604,7 +604,6 @@ void Device::CheckSuitability() const {
         std::make_pair(features.occlusionQueryPrecise, "occlusionQueryPrecise"),
         std::make_pair(features.fragmentStoresAndAtomics, "fragmentStoresAndAtomics"),
         std::make_pair(features.shaderImageGatherExtended, "shaderImageGatherExtended"),
-        std::make_pair(features.shaderStorageImageMultisample, "shaderStorageImageMultisample"),
         std::make_pair(features.shaderStorageImageWriteWithoutFormat,
                        "shaderStorageImageWriteWithoutFormat"),
     };