47 lines
1.4 KiB
C
47 lines
1.4 KiB
C
#ifndef ZN_PROFILING_H
|
|
#define ZN_PROFILING_H
|
|
|
|
#if defined(TRACY_ENABLE)
|
|
|
|
#include <thirdparty/tracy/Tracy.hpp>
|
|
#include <thirdparty/tracy/common/TracySystem.hpp>
|
|
|
|
#define ZN_PROFILER_ENABLED
|
|
|
|
#define ZN_PROFILE_SCOPE() ZoneScoped
|
|
#define ZN_PROFILE_SCOPE_NAMED(name) ZoneScopedN(name)
|
|
#define ZN_PROFILE_MARK_FRAME() FrameMark
|
|
#define ZN_PROFILE_SET_THREAD_NAME(name) tracy::SetThreadName(name)
|
|
#define ZN_PROFILE_PLOT(name, number) TracyPlot(name, number)
|
|
#define ZN_PROFILE_MESSAGE(message) TracyMessageL(message)
|
|
#define ZN_PROFILE_MESSAGE_DYN(message, size) TracyMessage(message, size)
|
|
|
|
#else
|
|
|
|
#define ZN_PROFILE_SCOPE()
|
|
// Name must be static const char* (usually string litteral)
|
|
#define ZN_PROFILE_SCOPE_NAMED(name)
|
|
#define ZN_PROFILE_MARK_FRAME()
|
|
#define ZN_PROFILE_PLOT(name, number)
|
|
#define ZN_PROFILE_MESSAGE(message)
|
|
// Name must be const char*. An internal copy will be made so it can be temporary.
|
|
// Size does not include the terminating character.
|
|
#define ZN_PROFILE_MESSAGE_DYN(message, size)
|
|
// Name must be const char*. An internal copy will be made so it can be temporary.
|
|
#define ZN_PROFILE_SET_THREAD_NAME(name)
|
|
|
|
#endif
|
|
|
|
/*
|
|
To add Tracy support, clone it under thirdparty/tracy, and add the following lines in core/SCsub:
|
|
|
|
```
|
|
# tracy library
|
|
env.Append(CPPDEFINES="TRACY_ENABLE")
|
|
env_thirdparty.Append(CPPDEFINES="TRACY_ENABLE")
|
|
env_thirdparty.add_source_files(env.core_sources, ["#thirdparty/tracy/TracyClient.cpp"])
|
|
```
|
|
*/
|
|
|
|
#endif // ZN_PROFILING_H
|