Files
cpp-project-template/examples/tracy_demo.cc

16 lines
197 B
C++
Raw Normal View History

2025-08-25 15:24:22 +08:00
#include <tracy/Tracy.hpp>
void Test()
{
std::this_thread::sleep_for(std::chrono::milliseconds(1));
}
int main()
{
ZoneScoped;
while (true)
{
Test();
}
return 0;
}