Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2021-10-09 16:50:09 +0300
committerBartosz Taudul <wolf@nereid.pl>2021-10-09 16:50:09 +0300
commit5835011d0f8d4526a6d51a676c54dbadf5a6fb3e (patch)
tree79924ad6971592f804a2aec32539c677d07680d8 /common
parent7c046eb7ac8a7c9e7ae7a5877605412e6b59e1ea (diff)
Allow serialized zone validation.
Diffstat (limited to 'common')
-rw-r--r--common/TracyQueue.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/common/TracyQueue.hpp b/common/TracyQueue.hpp
index 0d3ca4a6..0150264c 100644
--- a/common/TracyQueue.hpp
+++ b/common/TracyQueue.hpp
@@ -148,6 +148,11 @@ struct QueueZoneValidation
uint32_t id;
};
+struct QueueZoneValidationThread
+{
+ uint32_t thread;
+};
+
struct QueueZoneColor
{
uint8_t r;
@@ -560,6 +565,7 @@ struct QueueItem
QueueZoneEnd zoneEnd;
QueueZoneEndThread zoneEndThread;
QueueZoneValidation zoneValidation;
+ QueueZoneValidationThread zoneValidationThread;
QueueZoneColor zoneColor;
QueueZoneColorThread zoneColorThread;
QueueZoneValue zoneValue;