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