mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 22:44:34 +00:00
Allow serialized zone validation.
This commit is contained in:
parent
7c046eb7ac
commit
5835011d0f
@ -2438,6 +2438,11 @@ Profiler::DequeueStatus Profiler::DequeueSerial()
|
||||
ThreadCtxCheckSerial( zoneValueThread );
|
||||
break;
|
||||
}
|
||||
case QueueType::ZoneValidation:
|
||||
{
|
||||
ThreadCtxCheckSerial( zoneValidationThread );
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
default:
|
||||
assert( false );
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user