mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
11 lines
253 B
C++
Executable File
11 lines
253 B
C++
Executable File
#ifndef __TRACY_HPP__
|
|
#define __TRACY_HPP__
|
|
|
|
#include "TracyProfiler.hpp"
|
|
#include "TracyScoped.hpp"
|
|
|
|
#define ZoneScoped tracy::ScopedZone ___tracy_scoped_zone( __FILE__, __FUNCTION__, __LINE__ );
|
|
#define FrameMark tracy::Profiler::FrameMark();
|
|
|
|
#endif
|