We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2c94c4 commit ae6a33fCopy full SHA for ae6a33f
1 file changed
src/vsg/state/Descriptor.cpp
@@ -49,6 +49,7 @@ void Descriptor::read(Input& input)
49
50
input.read("dstBinding", dstBinding);
51
input.read("dstArrayElement", dstArrayElement);
52
+ input.read("descriptorType", descriptorType);
53
}
54
55
void Descriptor::write(Output& output) const
@@ -57,6 +58,7 @@ void Descriptor::write(Output& output) const
57
58
59
output.write("dstBinding", dstBinding);
60
output.write("dstArrayElement", dstArrayElement);
61
+ output.write("descriptorType", descriptorType);
62
63
64
void Descriptor::assignTo(Context& /*context*/, VkWriteDescriptorSet& wds) const
0 commit comments