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-08-20 18:02:29 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-08-20 18:02:29 +0300
commit655d8a01ea9cc08b014bd1f38e3db2bc87be90e6 (patch)
tree2ce67c718b76b8ea7e41ecd6551cc171a8106ed1 /server/TracyView_Locks.cpp
parent49bda91be56581dd2d33ff1829deec4f07b7d0f1 (diff)
Move vis data to timeline controller.
Diffstat (limited to 'server/TracyView_Locks.cpp')
-rw-r--r--server/TracyView_Locks.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/TracyView_Locks.cpp b/server/TracyView_Locks.cpp
index 7f3027be..52126451 100644
--- a/server/TracyView_Locks.cpp
+++ b/server/TracyView_Locks.cpp
@@ -362,7 +362,7 @@ int View::DrawLocks( uint64_t tid, bool hover, double pxns, const ImVec2& wpos,
for( const auto& v : m_worker.GetLockMap() )
{
const auto& lockmap = *v.second;
- if( !lockmap.valid || !Vis( &lockmap ).visible ) continue;
+ if( !lockmap.valid || !m_tc.Vis( &lockmap ).visible ) continue;
if( m_vd.onlyContendedLocks && ( lockmap.threadList.size() == 1 || !lockmap.isContended ) && m_lockInfoWindow != v.first ) continue;
auto it = lockmap.threadMap.find( tid );