mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Check for exclusive samples in inlined symbols list.
This commit is contained in:
parent
4eb78f5c86
commit
e376866436
@ -11900,16 +11900,20 @@ void View::DrawStatistics()
|
||||
break;
|
||||
}
|
||||
|
||||
ImGui::PushID( idx++ );
|
||||
if( iv.symAddr == v.symAddr )
|
||||
const auto sn = iv.symAddr == v.symAddr ? "[self time]" : name;
|
||||
if( iv.excl == 0 )
|
||||
{
|
||||
TextDisabledUnformatted( "[self time]" );
|
||||
ImGui::TextUnformatted( sn );
|
||||
}
|
||||
else if( ImGui::Selectable( name, m_sampleParents.symAddr == iv.symAddr, ImGuiSelectableFlags_SpanAllColumns ) )
|
||||
else
|
||||
{
|
||||
ShowSampleParents( iv.symAddr );
|
||||
ImGui::PushID( idx++ );
|
||||
if( ImGui::Selectable( sn, m_sampleParents.symAddr == iv.symAddr, ImGuiSelectableFlags_SpanAllColumns ) )
|
||||
{
|
||||
ShowSampleParents( iv.symAddr );
|
||||
}
|
||||
ImGui::PopID();
|
||||
}
|
||||
ImGui::PopID();
|
||||
ImGui::NextColumn();
|
||||
float indentVal = 0.f;
|
||||
if( m_statBuzzAnim.Match( iv.symAddr ) )
|
||||
|
Loading…
Reference in New Issue
Block a user