Display wall time in addition to sample counts.

This commit is contained in:
Bartosz Taudul 2020-04-11 22:14:56 +02:00
parent 3ef76df0d1
commit 58cf97ef5d

View File

@ -495,6 +495,10 @@ void SourceView::RenderSymbolView( const Worker& worker )
}
if( iptotalAsm > 0 )
{
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();
TextFocused( ICON_FA_STOPWATCH " Time:", TimeToString( iptotalAsm * worker.GetSamplingPeriod() ) );
ImGui::SameLine();
ImGui::Spacing();
ImGui::SameLine();