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

Add allocations list window.

This commit is contained in:
Bartosz Taudul
2018-09-27 23:16:10 +02:00
parent 01e0bbb5f9
commit 6cfd53b274
2 changed files with 15 additions and 1 deletions
+2
View File
@@ -93,6 +93,7 @@ private:
void DrawFindZone();
void DrawStatistics();
void DrawMemory();
void DrawAllocList();
void DrawCompare();
void DrawCallstackWindow();
void DrawMemoryAllocWindow();
@@ -402,6 +403,7 @@ private:
char pattern[1024] = {};
uint64_t ptrFind = 0;
bool restrictTime = false;
bool showAllocList = false;
std::vector<const MemEvent*> allocList;
} m_memInfo;