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

Rename DrawZone* -> DrawTimeline*.

This commit is contained in:
Bartosz Taudul
2022-07-02 15:38:10 +02:00
parent e3b11821c3
commit 9fb618c12d
4 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -12,7 +12,7 @@ enum { MinVisSize = 3 };
extern double s_time;
void View::DrawZones()
void View::DrawTimeline()
{
m_msgHighlight.Decay( nullptr );
m_zoneSrcLocHighlight.Decay( 0 );
@@ -75,13 +75,13 @@ void View::DrawZones()
}
}
DrawZoneFramesHeader();
DrawTimelineFramesHeader();
auto& frames = m_worker.GetFrames();
for( auto fd : frames )
{
if( Vis( fd ).visible )
{
DrawZoneFrames( *fd );
DrawTimelineFrames( *fd );
}
}