mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-12 19:31:47 +00:00
Vararg functions can't be inlined.
This commit is contained in:
parent
b18796c1c0
commit
ee65a45bef
@ -126,7 +126,7 @@ public:
|
|||||||
TracyQueueCommit( zoneTextFatThread );
|
TracyQueueCommit( zoneTextFatThread );
|
||||||
}
|
}
|
||||||
|
|
||||||
tracy_force_inline void TextFmt( const char* fmt, ... )
|
void TextFmt( const char* fmt, ... )
|
||||||
{
|
{
|
||||||
if( !m_active ) return;
|
if( !m_active ) return;
|
||||||
#ifdef TRACY_ON_DEMAND
|
#ifdef TRACY_ON_DEMAND
|
||||||
@ -165,7 +165,7 @@ public:
|
|||||||
TracyQueueCommit( zoneTextFatThread );
|
TracyQueueCommit( zoneTextFatThread );
|
||||||
}
|
}
|
||||||
|
|
||||||
tracy_force_inline void NameFmt( const char* fmt, ... )
|
void NameFmt( const char* fmt, ... )
|
||||||
{
|
{
|
||||||
if( !m_active ) return;
|
if( !m_active ) return;
|
||||||
#ifdef TRACY_ON_DEMAND
|
#ifdef TRACY_ON_DEMAND
|
||||||
|
Loading…
Reference in New Issue
Block a user