Display count of aggregate inline functions.

This commit is contained in:
Bartosz Taudul 2024-03-13 19:10:13 +01:00
parent 3af5c7b331
commit e155702e0a
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -579,6 +579,11 @@ void View::DrawSamplesStatistics( Vector<SymList>& data, int64_t timeRange, Accu
if( clicked ) ShowSampleParents( iv.symAddr, false ); if( clicked ) ShowSampleParents( iv.symAddr, false );
ImGui::PopID(); ImGui::PopID();
} }
if( iv.count > 1 )
{
ImGui::SameLine();
ImGui::TextDisabled( "(\xc3\x97%s)", RealToString( iv.count ) );
}
ImGui::TableNextColumn(); ImGui::TableNextColumn();
float indentVal = 0.f; float indentVal = 0.f;
if( m_statBuzzAnim.Match( iv.symAddr ) ) if( m_statBuzzAnim.Match( iv.symAddr ) )