From 3141d1798878ca4353291d2cde57d742b8b969c3 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 22 Sep 2017 01:59:16 +0200 Subject: [PATCH] Temporary display of thread name. --- server/TracyView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 33a24e73..6a18617f 100755 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -893,6 +893,8 @@ void View::DrawZones() it++; } + draw->AddText( wpos + ImVec2( 0, offset ), 0xFFFFFFFF, GetThreadString( v.id ) ); + offset += 20; } }