1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Extract text printing functions.

This commit is contained in:
Bartosz Taudul
2019-06-18 20:43:28 +02:00
parent aa5259b20a
commit 1a32edebf2
8 changed files with 361 additions and 397 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef __TRACYPRINT_HPP__
#define __TRACYPRINT_HPP__
namespace tracy
{
const char* TimeToString( int64_t ns );
const char* RealToString( double val, bool separator );
const char* MemSizeToString( int64_t val );
}
#endif