Loading...
Searching...
No Matches
Go to the documentation of this file.
22#include <tracy/Tracy.hpp>
26# define LK_SCOPE_PERF(Name) FScopePerfTimer LK_SCOPED_PerfTimer__LINE__(Name, LApplication::Get().GetPerformanceProfiler());
27# define LK_SCOPE_TIMER(Name) FScopedTimer LK_SCOPED_Timer__LINE__(Name);
29# define LK_PROFILE_MARK_FRAME FrameMark
30# define LK_PROFILE_FUNC(...) ZoneScoped##__VA_OPT__(N(__VA_ARGS__))
31# define LK_PROFILE_THREAD(...) tracy::SetThreadName(__VA_ARGS__)
33# define LK_SCOPE_PERF(Name) (void)(Name)
34# define LK_SCOPE_TIMER(Name) (void)(Name)
36# define LK_PROFILE_MARK_FRAME (void)(0)
37# define LK_PROFILE_FUNC(...)
38# define LK_PROFILE_THREAD(...)