Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TracyPrint.hpp « server - github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f132d027748b248bca4fc8b0b3f8e615c389dca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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