oden/third-party/vendor/tracy-client-sys/tracy/client/TracyDebug.hpp
2024-03-08 11:03:01 -08:00

11 lines
202 B
C++

#ifndef __TRACYPRINT_HPP__
#define __TRACYPRINT_HPP__
#ifdef TRACY_VERBOSE
# include <stdio.h>
# define TracyDebug(...) fprintf( stderr, __VA_ARGS__ );
#else
# define TracyDebug(...)
#endif
#endif