1
0
mirror of https://github.com/wolfpld/tracy synced 2025-05-03 14:03:52 +00:00

Time is int64_t.

This commit is contained in:
Bartosz Taudul 2018-09-01 01:02:08 +02:00
parent cb47ac6165
commit 27a2d8595d
2 changed files with 2 additions and 2 deletions

View File

@ -6362,7 +6362,7 @@ void View::DrawInfo()
m_frameSortData.data.resize( fsz ); m_frameSortData.data.resize( fsz );
auto ptr = m_frameSortData.data.data(); auto ptr = m_frameSortData.data.data();
size_t total = 0; int64_t total = 0;
for( size_t i=0; i<fsz; i++ ) for( size_t i=0; i<fsz; i++ )
{ {
const auto t = m_worker.GetFrameTime( *m_frames, i ); const auto t = m_worker.GetFrameTime( *m_frames, i );

View File

@ -357,7 +357,7 @@ private:
} m_memInfo; } m_memInfo;
struct { struct {
std::vector<uint64_t> data; std::vector<int64_t> data;
const FrameData* frameSet = nullptr; const FrameData* frameSet = nullptr;
size_t frameNum = 0; size_t frameNum = 0;
float average = 0; float average = 0;