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

Store min, max values in plot.

This commit is contained in:
Bartosz Taudul
2017-10-13 15:32:59 +02:00
parent 5deb1c51dd
commit 591fbdf75a
2 changed files with 7 additions and 1 deletions
+2
View File
@@ -71,6 +71,8 @@ private:
struct PlotData
{
uint64_t name;
double min;
double max;
std::vector<PlotItem> data;
};