tracy/client/TracyScoped.hpp
2017-09-22 01:11:53 +02:00

32 lines
533 B
C++
Executable File

#ifndef __TRACYSCOPED_HPP__
#define __TRACYSCOPED_HPP__
#include <stdint.h>
#include "TracyProfiler.hpp"
#include "TracyThread.hpp"
namespace tracy
{
class ScopedZone
{
public:
ScopedZone( const char* file, const char* function, uint32_t line )
: m_id( Profiler::ZoneBegin( QueueZoneBegin { GetTime(), (uint64_t)file, (uint64_t)function, line, GetThreadHandle() } ) )
{
}
~ScopedZone()
{
Profiler::ZoneEnd( m_id, QueueZoneEnd { GetTime() } );
}
private:
uint64_t m_id;
};
}
#endif