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 );
|
ThreadCtxCheckSerial( zoneValueThread );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case QueueType::ZoneValidation:
|
||||||
|
{
|
||||||
|
ThreadCtxCheckSerial( zoneValidationThread );
|
||||||
|
break;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
assert( false );
|
assert( false );
|
||||||
|
@ -148,6 +148,11 @@ struct QueueZoneValidation
|
|||||||
uint32_t id;
|
uint32_t id;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct QueueZoneValidationThread
|
||||||
|
{
|
||||||
|
uint32_t thread;
|
||||||
|
};
|
||||||
|
|
||||||
struct QueueZoneColor
|
struct QueueZoneColor
|
||||||
{
|
{
|
||||||
uint8_t r;
|
uint8_t r;
|
||||||
@ -560,6 +565,7 @@ struct QueueItem
|
|||||||
QueueZoneEnd zoneEnd;
|
QueueZoneEnd zoneEnd;
|
||||||
QueueZoneEndThread zoneEndThread;
|
QueueZoneEndThread zoneEndThread;
|
||||||
QueueZoneValidation zoneValidation;
|
QueueZoneValidation zoneValidation;
|
||||||
|
QueueZoneValidationThread zoneValidationThread;
|
||||||
QueueZoneColor zoneColor;
|
QueueZoneColor zoneColor;
|
||||||
QueueZoneColorThread zoneColorThread;
|
QueueZoneColorThread zoneColorThread;
|
||||||
QueueZoneValue zoneValue;
|
QueueZoneValue zoneValue;
|
||||||
|
Loading…
Reference in New Issue
Block a user