mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
Two plot types: user and memory.
Only user plots are saved in a dump file.
This commit is contained in:
@@ -212,6 +212,12 @@ struct PlotItem
|
||||
double val;
|
||||
};
|
||||
|
||||
enum class PlotType
|
||||
{
|
||||
User,
|
||||
Memory
|
||||
};
|
||||
|
||||
struct PlotData
|
||||
{
|
||||
uint64_t name;
|
||||
@@ -220,6 +226,7 @@ struct PlotData
|
||||
Vector<PlotItem> data;
|
||||
Vector<PlotItem> postpone;
|
||||
uint64_t postponeTime;
|
||||
PlotType type;
|
||||
};
|
||||
|
||||
struct MemData
|
||||
|
||||
Reference in New Issue
Block a user