From 73981d4ef3a285c80ef49c0e9dfb5255d140ef3b Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 4 Aug 2020 17:39:36 +0200 Subject: [PATCH] TracyCSetThreadName() should be always available. --- TracyC.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/TracyC.h b/TracyC.h index 7ac1d69a..61011e79 100644 --- a/TracyC.h +++ b/TracyC.h @@ -11,6 +11,11 @@ extern "C" { #endif +TRACY_API void ___tracy_set_thread_name( const char* name ); + +#define TracyCSetThreadName( name ) ___tracy_set_thread_name( name ); + + #ifndef TRACY_ENABLE typedef const void* TracyCZoneCtx; @@ -168,10 +173,6 @@ TRACY_API void ___tracy_emit_message_appinfo( const char* txt, size_t size ); #define TracyCPlot( name, val ) ___tracy_emit_plot( name, val ); #define TracyCAppInfo( txt, color ) ___tracy_emit_message_appinfo( txt, color ); -TRACY_API void ___tracy_set_thread_name( const char* name ); - -#define TracyCSetThreadName( name ) ___tracy_set_thread_name( name ); - #ifdef TRACY_HAS_CALLSTACK # define TracyCZoneS( ctx, depth, active ) static const struct ___tracy_source_location_data TracyConcat(__tracy_source_location,__LINE__) = { NULL, __FUNCTION__, __FILE__, (uint32_t)__LINE__, 0 }; TracyCZoneCtx ctx = ___tracy_emit_zone_begin_callstack( &TracyConcat(__tracy_source_location,__LINE__), depth, active );