mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-27 00:04:35 +00:00
Use frame offset for frame count and missed frames display.
This commit is contained in:
parent
a78981e040
commit
fe449f366f
@ -617,13 +617,14 @@ void View::DrawFrames()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
const auto offset = m_worker.GetFrameOffset();
|
||||||
if( sel == 0 )
|
if( sel == 0 )
|
||||||
{
|
{
|
||||||
ImGui::Text( "Tracy initialization" );
|
ImGui::Text( "Tracy initialization" );
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
TextFocused( "Time:", TimeToString( m_worker.GetFrameTime( sel ) ) );
|
TextFocused( "Time:", TimeToString( m_worker.GetFrameTime( sel ) ) );
|
||||||
}
|
}
|
||||||
else
|
else if( offset == 0 )
|
||||||
{
|
{
|
||||||
ImGui::TextDisabled( "Frame:" );
|
ImGui::TextDisabled( "Frame:" );
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
@ -631,6 +632,20 @@ void View::DrawFrames()
|
|||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
TextFocused( "Frame time:", TimeToString( m_worker.GetFrameTime( sel ) ) );
|
TextFocused( "Frame time:", TimeToString( m_worker.GetFrameTime( sel ) ) );
|
||||||
}
|
}
|
||||||
|
else if( sel == 1 )
|
||||||
|
{
|
||||||
|
ImGui::Text( "Missed frames" );
|
||||||
|
ImGui::Separator();
|
||||||
|
TextFocused( "Time:", TimeToString( m_worker.GetFrameTime( 1 ) ) );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ImGui::TextDisabled( "Frame:" );
|
||||||
|
ImGui::SameLine();
|
||||||
|
ImGui::Text( "%i", sel + offset - 1 );
|
||||||
|
ImGui::Separator();
|
||||||
|
TextFocused( "Frame time:", TimeToString( m_worker.GetFrameTime( sel ) ) );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
TextFocused( "Time from start of program:", TimeToString( m_worker.GetFrameBegin( sel ) - m_worker.GetFrameBegin( 0 ) ) );
|
TextFocused( "Time from start of program:", TimeToString( m_worker.GetFrameBegin( sel ) - m_worker.GetFrameBegin( 0 ) ) );
|
||||||
ImGui::EndTooltip();
|
ImGui::EndTooltip();
|
||||||
@ -764,17 +779,25 @@ void View::HandleZoneViewMouse( int64_t timespan, const ImVec2& wpos, float w, d
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static const char* GetFrameText( int i, uint64_t ftime )
|
static const char* GetFrameText( int i, uint64_t ftime, uint64_t offset )
|
||||||
{
|
{
|
||||||
static char buf[128];
|
static char buf[128];
|
||||||
if( i == 0 )
|
if( i == 0 )
|
||||||
{
|
{
|
||||||
sprintf( buf, "Tracy init (%s)", TimeToString( ftime ) );
|
sprintf( buf, "Tracy init (%s)", TimeToString( ftime ) );
|
||||||
}
|
}
|
||||||
else
|
else if( offset == 0 )
|
||||||
{
|
{
|
||||||
sprintf( buf, "Frame %i (%s)", i, TimeToString( ftime ) );
|
sprintf( buf, "Frame %i (%s)", i, TimeToString( ftime ) );
|
||||||
}
|
}
|
||||||
|
else if( i == 1 )
|
||||||
|
{
|
||||||
|
sprintf( buf, "Missed frames (%s)", TimeToString( ftime ) );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
sprintf( buf, "Frame %i (%s)", i + offset - 1, TimeToString( ftime ) );
|
||||||
|
}
|
||||||
return buf;
|
return buf;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -858,7 +881,7 @@ bool View::DrawZoneFrames()
|
|||||||
if( hover && ImGui::IsMouseHoveringRect( wpos + ImVec2( ( fbegin - m_zvStart ) * pxns, fy ), wpos + ImVec2( ( fend - m_zvStart ) * pxns, fy + ty ) ) )
|
if( hover && ImGui::IsMouseHoveringRect( wpos + ImVec2( ( fbegin - m_zvStart ) * pxns, fy ), wpos + ImVec2( ( fend - m_zvStart ) * pxns, fy + ty ) ) )
|
||||||
{
|
{
|
||||||
ImGui::BeginTooltip();
|
ImGui::BeginTooltip();
|
||||||
ImGui::Text( "%s", GetFrameText( i, ftime ) );
|
ImGui::Text( "%s", GetFrameText( i, ftime, m_worker.GetFrameOffset() ) );
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
TextFocused( "Time from start of program:", TimeToString( m_worker.GetFrameBegin( i ) - m_worker.GetFrameBegin( 0 ) ) );
|
TextFocused( "Time from start of program:", TimeToString( m_worker.GetFrameBegin( i ) - m_worker.GetFrameBegin( 0 ) ) );
|
||||||
ImGui::EndTooltip();
|
ImGui::EndTooltip();
|
||||||
@ -878,7 +901,7 @@ bool View::DrawZoneFrames()
|
|||||||
|
|
||||||
if( fsz >= 5 )
|
if( fsz >= 5 )
|
||||||
{
|
{
|
||||||
auto buf = GetFrameText( i, ftime );
|
auto buf = GetFrameText( i, ftime, m_worker.GetFrameOffset() );
|
||||||
auto tx = ImGui::CalcTextSize( buf ).x;
|
auto tx = ImGui::CalcTextSize( buf ).x;
|
||||||
uint32_t color = i == 0 ? 0xFF4444FF : 0xFFFFFFFF;
|
uint32_t color = i == 0 ? 0xFF4444FF : 0xFFFFFFFF;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user