Fix issue #1367 - change the I/O remapper to ignore push constants so it does not apply a binding/descriptor set to them.

This commit is contained in:
danginsburg 2018-05-02 16:42:22 -04:00
parent 9cf275bb9e
commit fb6924d23b

View File

@ -132,7 +132,7 @@ public:
target = &inputList;
else if (base->getQualifier().storage == EvqVaryingOut)
target = &outputList;
else if (base->getQualifier().isUniformOrBuffer())
else if (base->getQualifier().isUniformOrBuffer() && !base->getQualifier().layoutPushConstant)
target = &uniformList;
if (target) {