mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Use proper macro.
This commit is contained in:
parent
44aef7660d
commit
1138307bd1
@ -1091,13 +1091,13 @@ enum SubSystems
|
||||
|
||||
void Physics::Process()
|
||||
{
|
||||
ZoneScopedN( __tracy, SUBSYSTEMS & Sys_Physics ); // always true, no runtime cost
|
||||
ZoneNamed( __tracy, SUBSYSTEMS & Sys_Physics ); // always true, no runtime cost
|
||||
...
|
||||
}
|
||||
|
||||
void Graphics::Render()
|
||||
{
|
||||
ZoneScopedN( __tracy, SUBSYSTEMS & Sys_Graphics ); // always false, no runtime cost
|
||||
ZoneNamed( __tracy, SUBSYSTEMS & Sys_Graphics ); // always false, no runtime cost
|
||||
...
|
||||
}
|
||||
\end{lstlisting}
|
||||
|
Loading…
Reference in New Issue
Block a user