Browse Source
Merge pull request #5341 from ReinUsesLisp/anv-storage
vulkan_device: Remove requirement on shaderStorageImageMultisample
pull/15/merge
Morph
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
1 deletions
-
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"), |
|
|
|
}; |
|
|
|
|