tracy/client/TracyScoped.hpp

32 lines
553 B
C++
Raw Normal View History

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