mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
Custom float-printing function.
This commit is contained in:
@@ -1,9 +1,17 @@
|
||||
#ifndef __TRACYPRINT_HPP__
|
||||
#define __TRACYPRINT_HPP__
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
namespace tracy
|
||||
{
|
||||
|
||||
template<typename T>
|
||||
static inline char* PrintFloat( char* begin, char* end, T value, int precision )
|
||||
{
|
||||
return begin + sprintf( begin, "%.*f", precision, value );
|
||||
}
|
||||
|
||||
const char* TimeToString( int64_t ns );
|
||||
const char* RealToString( double val, bool separator );
|
||||
const char* MemSizeToString( int64_t val );
|
||||
|
||||
Reference in New Issue
Block a user