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

Add range boundary highlight.

This commit is contained in:
Bartosz Taudul
2020-07-29 18:07:50 +02:00
parent ff5daf9df7
commit 2f5f2e5b1d
2 changed files with 7 additions and 1 deletions
+4
View File
@@ -58,8 +58,12 @@ class View
struct Range
{
void StartFrame() { hiMin = hiMax = false; }
int64_t min, max;
bool active = false;
bool hiMin = false;
bool hiMax = false;
};
public: