mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
Rename "threads" to "groups" in find zone data structs.
This commit is contained in:
@@ -223,10 +223,10 @@ private:
|
||||
|
||||
bool show = false;
|
||||
std::vector<int32_t> match;
|
||||
std::map<uint64_t, Vector<ZoneEvent*>> threads;
|
||||
std::map<uint64_t, Vector<ZoneEvent*>> groups;
|
||||
size_t processed;
|
||||
int selMatch = 0;
|
||||
uint64_t selThread = Unselected;
|
||||
uint64_t selGroup = Unselected;
|
||||
char pattern[1024] = {};
|
||||
bool logVal = false;
|
||||
bool logTime = true;
|
||||
@@ -239,16 +239,16 @@ private:
|
||||
|
||||
void Reset()
|
||||
{
|
||||
ResetThreads();
|
||||
ResetGroups();
|
||||
match.clear();
|
||||
selMatch = 0;
|
||||
selThread = Unselected;
|
||||
selGroup = Unselected;
|
||||
highlight.active = false;
|
||||
}
|
||||
|
||||
void ResetThreads()
|
||||
void ResetGroups()
|
||||
{
|
||||
threads.clear();
|
||||
groups.clear();
|
||||
processed = 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user