2017-09-22 17:32:49 +00:00
|
|
|
#include <chrono>
|
|
|
|
#include <thread>
|
|
|
|
#include "../client/Tracy.hpp"
|
|
|
|
#include "../common/TracySystem.hpp"
|
|
|
|
|
|
|
|
void TestFunction()
|
|
|
|
{
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
|
|
|
ZoneScoped;
|
|
|
|
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResolutionCheck()
|
|
|
|
{
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
ZoneScoped;
|
|
|
|
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
|
|
|
}
|
|
|
|
{
|
|
|
|
ZoneScoped;
|
|
|
|
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-09-23 19:37:14 +00:00
|
|
|
void ScopeCheck()
|
|
|
|
{
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) );
|
|
|
|
ZoneScoped;
|
|
|
|
}
|
|
|
|
}
|
2017-09-22 17:32:49 +00:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
auto t1 = std::thread( TestFunction );
|
|
|
|
auto t2 = std::thread( TestFunction );
|
|
|
|
auto t3 = std::thread( ResolutionCheck );
|
2017-09-23 19:37:14 +00:00
|
|
|
auto t4 = std::thread( ScopeCheck );
|
2017-09-22 17:32:49 +00:00
|
|
|
|
|
|
|
tracy::SetThreadName( t1, "First thread" );
|
|
|
|
tracy::SetThreadName( t2, "Second thread" );
|
|
|
|
tracy::SetThreadName( t3, "Resolution check" );
|
2017-09-23 19:37:14 +00:00
|
|
|
tracy::SetThreadName( t4, "Scope check" );
|
2017-09-22 17:32:49 +00:00
|
|
|
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
std::this_thread::sleep_for( std::chrono::milliseconds( 2 ) );
|
|
|
|
{
|
|
|
|
ZoneScoped;
|
|
|
|
std::this_thread::sleep_for( std::chrono::milliseconds( 2 ) );
|
|
|
|
}
|
|
|
|
FrameMark;
|
|
|
|
}
|
|
|
|
}
|