16 lines
197 B
C++
16 lines
197 B
C++
![]() |
#include <tracy/Tracy.hpp>
|
||
|
void Test()
|
||
|
{
|
||
|
std::this_thread::sleep_for(std::chrono::milliseconds(1));
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
ZoneScoped;
|
||
|
while (true)
|
||
|
{
|
||
|
Test();
|
||
|
}
|
||
|
return 0;
|
||
|
}
|