20 std::filesystem::path path;
21 std::vector<Result> results;
32 void BeginSession(
const std::string& name,
const std::filesystem::path filepath =
"results.json");
34 void AddProfile(
const Result& result);
38 std::chrono::system_clock::time_point frameStart;
39 bool isInSession =
false;
45 Timer(
const char* name);
50 std::chrono::system_clock::time_point startTime;
57 #define GRIND_PROFILE_BEGIN_SESSION(name, filepath) Grindstone::Profiler::Manager::Get().BeginSession(name, filepath)
58 #define GRIND_PROFILE_END_SESSION() Grindstone::Profiler::Manager::Get().EndSession()
59 #define GRIND_PROFILE_SCOPE(name) Grindstone::Profiler::Timer grindstone_profiler_timer_##__LINE__(name)
60 #define GRIND_PROFILE_FUNC() GRIND_PROFILE_SCOPE(__FUNCSIG__)
62 #define GRIND_PROFILE_BEGIN_SESSION(name, filepath)
63 #define GRIND_PROFILE_END_SESSION()
64 #define GRIND_PROFILE_SCOPE(name)
65 #define GRIND_PROFILE_FUNC()
Definition Profiling.hpp:24
Definition Profiling.hpp:43
Definition Profiling.hpp:18
Definition Profiling.hpp:11