diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-01-13 18:00:52 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-13 18:00:52 +0800 |
commit | baff865d7c9a1a165e2b4caacd3618966dc4fb03 (patch) | |
tree | 274986bbea611613224aee1fb40185a47476d823 /src | |
parent | c320da3f63c0c28f7a21a0f2b1ef5912b3c74455 (diff) | |
parent | d9a15a935bbe3e4efc42f93662631702bae615d0 (diff) |
Merge pull request #5341 from ReinUsesLisp/anv-storage
vulkan_device: Remove requirement on shaderStorageImageMultisample
Diffstat (limited to 'src')
-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 { 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"), }; |