diff options
| author | 2021-01-13 06:21:33 -0300 | |
|---|---|---|
| committer | 2021-01-13 06:21:33 -0300 | |
| commit | d9a15a935bbe3e4efc42f93662631702bae615d0 (patch) | |
| tree | 274986bbea611613224aee1fb40185a47476d823 | |
| parent | Merge pull request #5340 from Morph1984/gcc-warnings (diff) | |
| download | yuzu-d9a15a935bbe3e4efc42f93662631702bae615d0.tar.gz yuzu-d9a15a935bbe3e4efc42f93662631702bae615d0.tar.xz yuzu-d9a15a935bbe3e4efc42f93662631702bae615d0.zip | |
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.
| -rw-r--r-- | src/video_core/vulkan_common/vulkan_device.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp index 75173324e..d6f603b99 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp | |||
| @@ -604,7 +604,6 @@ void Device::CheckSuitability() const { | |||
| 604 | std::make_pair(features.occlusionQueryPrecise, "occlusionQueryPrecise"), | 604 | std::make_pair(features.occlusionQueryPrecise, "occlusionQueryPrecise"), |
| 605 | std::make_pair(features.fragmentStoresAndAtomics, "fragmentStoresAndAtomics"), | 605 | std::make_pair(features.fragmentStoresAndAtomics, "fragmentStoresAndAtomics"), |
| 606 | std::make_pair(features.shaderImageGatherExtended, "shaderImageGatherExtended"), | 606 | std::make_pair(features.shaderImageGatherExtended, "shaderImageGatherExtended"), |
| 607 | std::make_pair(features.shaderStorageImageMultisample, "shaderStorageImageMultisample"), | ||
| 608 | std::make_pair(features.shaderStorageImageWriteWithoutFormat, | 607 | std::make_pair(features.shaderStorageImageWriteWithoutFormat, |
| 609 | "shaderStorageImageWriteWithoutFormat"), | 608 | "shaderStorageImageWriteWithoutFormat"), |
| 610 | }; | 609 | }; |