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

Time Stamp Counter to time conversion function.

This commit is contained in:
Bartosz Taudul
2018-02-20 12:40:12 +01:00
parent 6a65ceb71a
commit 118d4b497f
2 changed files with 24 additions and 21 deletions
+3
View File
@@ -183,6 +183,9 @@ private:
void ReadTimeline( FileRead& f, Vector<ZoneEvent*>& vec );
void ReadTimeline( FileRead& f, Vector<GpuEvent*>& vec );
int64_t TscTime( int64_t tsc ) { return int64_t( tsc * m_timerMul ); }
int64_t TscTime( uint64_t tsc ) { return int64_t( tsc * m_timerMul ); }
std::string m_addr;
Socket m_sock;