1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Don't error on frame end without start (#666)

With on-demand profiling we're very likely to connect in the middle of a
discontinuous frame and thus receive a frame end without any preceding
frame start. So don't error out in this case.
This commit is contained in:
Ivan Molodetskikh
2023-11-19 22:09:58 +04:00
committed by GitHub
parent 906f73cab3
commit ad39a01de1
2 changed files with 4 additions and 2 deletions
+1
View File
@@ -980,6 +980,7 @@ private:
int m_bufferOffset;
bool m_onDemand;
bool m_ignoreMemFreeFaults;
bool m_ignoreFrameEndFaults;
bool m_codeTransfer;
bool m_combineSamples;
bool m_identifySamples = false;