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

Implement callstack tree of memory allocations.

This commit is contained in:
Bartosz Taudul
2018-08-14 18:37:06 +02:00
parent c2c0f887aa
commit df14cf5330
3 changed files with 138 additions and 0 deletions
+3
View File
@@ -90,6 +90,9 @@ private:
template<class T>
void ListMemData( T ptr, T end, std::function<void(T&)> DrawAddress, const char* id = nullptr );
std::vector<CallstackFrameTree> GetCallstackFrameTree( const MemData& mem ) const;
void DrawFrameTreeLevel( std::vector<CallstackFrameTree>& tree ) const;
void DrawInfoWindow();
void DrawZoneInfoWindow();
void DrawGpuInfoWindow();