Add formatted variants for ZoneText and ZoneName.

This commit is contained in:
Bartosz Taudul 2024-02-11 16:24:37 +01:00
parent c03884d20c
commit bf76f57716
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3
2 changed files with 57 additions and 0 deletions

View File

@ -2,6 +2,7 @@
#define __TRACYSCOPED_HPP__ #define __TRACYSCOPED_HPP__
#include <limits> #include <limits>
#include <stdarg.h>
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
@ -121,6 +122,30 @@ public:
TracyQueueCommit( zoneTextFatThread ); TracyQueueCommit( zoneTextFatThread );
} }
tracy_force_inline void TextFmt( const char* fmt, ... )
{
if( !m_active ) return;
#ifdef TRACY_ON_DEMAND
if( GetProfiler().ConnectionId() != m_connectionId ) return;
#endif
va_list args;
va_start( args, fmt );
auto size = vsnprintf( nullptr, 0, fmt, args );
va_end( args );
if( size < 0 ) return;
assert( size < (std::numeric_limits<uint16_t>::max)() );
char* ptr = (char*)tracy_malloc( size_t( size ) + 1 );
va_start( args, fmt );
vsnprintf( ptr, size_t( size ) + 1, fmt, args );
va_end( args );
TracyQueuePrepare( QueueType::ZoneText );
MemWrite( &item->zoneTextFat.text, (uint64_t)ptr );
MemWrite( &item->zoneTextFat.size, (uint16_t)size );
TracyQueueCommit( zoneTextFatThread );
}
tracy_force_inline void Name( const char* txt, size_t size ) tracy_force_inline void Name( const char* txt, size_t size )
{ {
assert( size < (std::numeric_limits<uint16_t>::max)() ); assert( size < (std::numeric_limits<uint16_t>::max)() );
@ -136,6 +161,30 @@ public:
TracyQueueCommit( zoneTextFatThread ); TracyQueueCommit( zoneTextFatThread );
} }
tracy_force_inline void NameFmt( const char* fmt, ... )
{
if( !m_active ) return;
#ifdef TRACY_ON_DEMAND
if( GetProfiler().ConnectionId() != m_connectionId ) return;
#endif
va_list args;
va_start( args, fmt );
auto size = vsnprintf( nullptr, 0, fmt, args );
va_end( args );
if( size < 0 ) return;
assert( size < (std::numeric_limits<uint16_t>::max)() );
char* ptr = (char*)tracy_malloc( size_t( size ) + 1 );
va_start( args, fmt );
vsnprintf( ptr, size_t( size ) + 1, fmt, args );
va_end( args );
TracyQueuePrepare( QueueType::ZoneName );
MemWrite( &item->zoneTextFat.text, (uint64_t)ptr );
MemWrite( &item->zoneTextFat.size, (uint16_t)size );
TracyQueueCommit( zoneTextFatThread );
}
tracy_force_inline void Color( uint32_t color ) tracy_force_inline void Color( uint32_t color )
{ {
if( !m_active ) return; if( !m_active ) return;

View File

@ -35,8 +35,12 @@
#define ZoneText(x,y) #define ZoneText(x,y)
#define ZoneTextV(x,y,z) #define ZoneTextV(x,y,z)
#define ZoneTextF(x,...)
#define ZoneTextVF(x,y,...)
#define ZoneName(x,y) #define ZoneName(x,y)
#define ZoneNameV(x,y,z) #define ZoneNameV(x,y,z)
#define ZoneNameF(x,...)
#define ZoneNameVF(x,y,...)
#define ZoneColor(x) #define ZoneColor(x)
#define ZoneColorV(x,y) #define ZoneColorV(x,y)
#define ZoneValue(x) #define ZoneValue(x)
@ -152,8 +156,12 @@
#define ZoneText( txt, size ) ___tracy_scoped_zone.Text( txt, size ) #define ZoneText( txt, size ) ___tracy_scoped_zone.Text( txt, size )
#define ZoneTextV( varname, txt, size ) varname.Text( txt, size ) #define ZoneTextV( varname, txt, size ) varname.Text( txt, size )
#define ZoneTextF( fmt, ... ) ___tracy_scoped_zone.TextFmt( fmt, ##__VA_ARGS__ )
#define ZoneTextVF( varname, fmt, ... ) varname.TextFmt( fmt, ##__VA_ARGS__ )
#define ZoneName( txt, size ) ___tracy_scoped_zone.Name( txt, size ) #define ZoneName( txt, size ) ___tracy_scoped_zone.Name( txt, size )
#define ZoneNameV( varname, txt, size ) varname.Name( txt, size ) #define ZoneNameV( varname, txt, size ) varname.Name( txt, size )
#define ZoneNameF( fmt, ... ) ___tracy_scoped_zone.NameFmt( fmt, ##__VA_ARGS__ )
#define ZoneNameVF( varname, fmt, ... ) varname.NameFmt( fmt, ##__VA_ARGS__ )
#define ZoneColor( color ) ___tracy_scoped_zone.Color( color ) #define ZoneColor( color ) ___tracy_scoped_zone.Color( color )
#define ZoneColorV( varname, color ) varname.Color( color ) #define ZoneColorV( varname, color ) varname.Color( color )
#define ZoneValue( value ) ___tracy_scoped_zone.Value( value ) #define ZoneValue( value ) ___tracy_scoped_zone.Value( value )