mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-25 23:44:35 +00:00
Use proper macro.
This commit is contained in:
parent
44aef7660d
commit
1138307bd1
@ -1091,13 +1091,13 @@ enum SubSystems
|
|||||||
|
|
||||||
void Physics::Process()
|
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()
|
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}
|
\end{lstlisting}
|
||||||
|
Loading…
Reference in New Issue
Block a user