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

Rename PathData -> MemPathData.

This commit is contained in:
Bartosz Taudul
2021-11-13 21:28:56 +01:00
parent a2547ccf1d
commit c6be16dcd2
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -133,7 +133,7 @@ private:
enum { InvalidId = 0xFFFFFFFF };
struct PathData
struct MemPathData
{
uint32_t cnt;
uint64_t mem;
@@ -226,7 +226,7 @@ private:
void ListMemData( std::vector<const MemEvent*>& vec, std::function<void(const MemEvent*)> DrawAddress, const char* id = nullptr, int64_t startTime = -1, uint64_t pool = 0 );
unordered_flat_map<uint32_t, PathData> GetCallstackPaths( const MemData& mem, bool onlyActive ) const;
unordered_flat_map<uint32_t, MemPathData> GetCallstackPaths( const MemData& mem, bool onlyActive ) const;
unordered_flat_map<uint64_t, MemCallstackFrameTree> GetCallstackFrameTreeBottomUp( const MemData& mem ) const;
unordered_flat_map<uint64_t, MemCallstackFrameTree> GetCallstackFrameTreeTopDown( const MemData& mem ) const;
void DrawFrameTreeLevel( const unordered_flat_map<uint64_t, MemCallstackFrameTree>& tree, int& idx );