APIProperties serialization missing field

The field APIProperties::rgpCapture was added years ago but
renderdoc_serialize.inl wasn't updated. One of those edge cases
where the size check failed to flag the oversight due to the
field appearing prior to other subsequent (conditional) fields.
End result is that the RGP Capture menu option is always disabled,
even when the target supports it.
This commit is contained in:
John Cortell
2023-03-03 11:24:33 +00:00
committed by Baldur Karlsson
parent c8b011344d
commit ac302d7a48
+1
View File
@@ -494,6 +494,7 @@ void DoSerialise(SerialiserType &ser, APIProperties &el)
SERIALISE_MEMBER(shaderDebugging);
SERIALISE_MEMBER(pixelHistory);
SERIALISE_MEMBER(rgpCapture);
SERIALISE_MEMBER(ShaderLinkage);
SERIALISE_MEMBER(YUVTextures);