Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-09-04 15:46:51 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-09-04 15:46:51 +0300
commit44efb15df1eb586d27b69bb346e979eb1b45ae0a (patch)
tree47861398278f6f48b02fec50e64454dce3bd2d8e /server/TracyView_NotificationArea.cpp
parentad2fc0312545a62138ebde985ea1d429ddd13cae (diff)
Remove VisData.
Its functionality is now incorporated into TimelineItem. For purposes of maintaining visibility of frame sets and locks a much simpler ptr -> bool map is now used.
Diffstat (limited to 'server/TracyView_NotificationArea.cpp')
-rw-r--r--server/TracyView_NotificationArea.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/TracyView_NotificationArea.cpp b/server/TracyView_NotificationArea.cpp
index c3413ca8..c776fbe3 100644
--- a/server/TracyView_NotificationArea.cpp
+++ b/server/TracyView_NotificationArea.cpp
@@ -189,9 +189,9 @@ void View::DrawNotificationArea()
}
{
bool hidden = false;
- for( auto& v : m_tc.GetVisData() )
+ for( auto& v : m_visMap )
{
- if( !v.second.visible )
+ if( !v.second )
{
hidden = true;
break;