diff options
author | ziga-lunarg <ziga@lunarg.com> | 2022-10-16 03:50:25 +0200 |
---|---|---|
committer | Matthew Netsch <quic_mnetsch@quicinc.com> | 2022-11-10 18:11:53 +0000 |
commit | 0de12be8bc46fb63242effa421f8f21493449ea9 (patch) | |
tree | 6af1990da99f421429ee75aff44c25bb6950ca72 | |
parent | 0f2f6d705d01478431960482fe1cac1f46cb50df (diff) | |
download | VK-GL-CTS-0de12be8bc46fb63242effa421f8f21493449ea9.tar.gz VK-GL-CTS-0de12be8bc46fb63242effa421f8f21493449ea9.tar.bz2 VK-GL-CTS-0de12be8bc46fb63242effa421f8f21493449ea9.zip |
Fix pMutableDescriptorTypeLists in mutable descriptor tests
pMutableDescriptorTypeLists between srcBinding and dstBinding must match
exactly for copying descriptor sets
Components: Vulkan
VK-GL-CTS issue: 4051
Affected tests:
dEQP-VK.binding_model.mutable_descriptor.*
Change-Id: I64445e84ccd4872789a3db8b15e005d36c08d8a4
-rw-r--r-- | external/vulkancts/modules/vulkan/binding_model/vktBindingValveMutableTests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/vulkancts/modules/vulkan/binding_model/vktBindingValveMutableTests.cpp b/external/vulkancts/modules/vulkan/binding_model/vktBindingValveMutableTests.cpp index 653f4d004..81e3f0878 100644 --- a/external/vulkancts/modules/vulkan/binding_model/vktBindingValveMutableTests.cpp +++ b/external/vulkancts/modules/vulkan/binding_model/vktBindingValveMutableTests.cpp @@ -980,7 +980,7 @@ public: static const auto kMandatoryMutableTypeFlags = toDescriptorTypeFlags(getMandatoryMutableTypes()); if (type == VK_DESCRIPTOR_TYPE_MUTABLE_VALVE) { - const auto descFlags = (toDescriptorTypeFlags(mutableTypesVec) | kMandatoryMutableTypeFlags); + const auto descFlags = toDescriptorTypeFlags(mutableTypesVec); return de::MovePtr<BindingInterface>(new SingleBinding(type, toDescriptorTypeVector(descFlags))); } |