Add notion of UI modifications to a capture, saved in .rdc sections

This commit is contained in:
baldurk
2017-11-15 19:28:19 +00:00
parent bb6452c334
commit c00a6ca8ef
8 changed files with 227 additions and 10 deletions
+7
View File
@@ -597,4 +597,11 @@ struct bytebuf : public rdcarray<byte>
{
bytebuf() : rdcarray<byte>() {}
bytebuf(const std::vector<byte> &in) : rdcarray<byte>(in) {}
#if defined(RENDERDOC_QT_COMPAT)
bytebuf(const QByteArray &in)
{
resize(in.size());
memcpy(elems, in.data(), in.size());
}
#endif
};