Files
dusklight/include/dusk/profiling.hpp
T
2026-07-08 01:47:49 -06:00

13 lines
191 B
C++

#pragma once
#if defined(__has_include)
#if __has_include(<tracy/Tracy.hpp>)
#include <tracy/Tracy.hpp>
#endif
#endif
#ifndef ZoneScoped
#define ZoneScoped
#define ZoneScopedN(name)
#endif