mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Normalize frame names in wait stacks tree.
This commit is contained in:
parent
4d974da290
commit
9c4f257596
@ -590,10 +590,16 @@ void View::DrawFrameTreeLevel( const unordered_flat_map<uint64_t, CallstackFrame
|
|||||||
{
|
{
|
||||||
TextColoredUnformatted( 0xFF8888FF, frameName );
|
TextColoredUnformatted( 0xFF8888FF, frameName );
|
||||||
}
|
}
|
||||||
else
|
else if( m_shortenName == ShortenName::Never )
|
||||||
{
|
{
|
||||||
ImGui::TextUnformatted( frameName );
|
ImGui::TextUnformatted( frameName );
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
const auto normalized = ShortenZoneName( ShortenName::OnlyNormalize, frameName );
|
||||||
|
expand = ImGui::TreeNodeEx( normalized, ImGuiTreeNodeFlags_DefaultOpen );
|
||||||
|
TooltipNormalizedName( frameName, normalized );
|
||||||
|
}
|
||||||
ImGui::Unindent( ImGui::GetTreeNodeToLabelSpacing() );
|
ImGui::Unindent( ImGui::GetTreeNodeToLabelSpacing() );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -602,13 +608,31 @@ void View::DrawFrameTreeLevel( const unordered_flat_map<uint64_t, CallstackFrame
|
|||||||
if( frameName[0] == '[' ) ImGui::PushStyleColor( ImGuiCol_Text, 0x88FFFFFF );
|
if( frameName[0] == '[' ) ImGui::PushStyleColor( ImGuiCol_Text, 0x88FFFFFF );
|
||||||
else if( isKernel ) ImGui::PushStyleColor( ImGuiCol_Text, 0xFF8888FF );
|
else if( isKernel ) ImGui::PushStyleColor( ImGuiCol_Text, 0xFF8888FF );
|
||||||
if( tree.size() == 1 )
|
if( tree.size() == 1 )
|
||||||
|
{
|
||||||
|
if( m_shortenName == ShortenName::Never )
|
||||||
{
|
{
|
||||||
expand = ImGui::TreeNodeEx( frameName, ImGuiTreeNodeFlags_DefaultOpen );
|
expand = ImGui::TreeNodeEx( frameName, ImGuiTreeNodeFlags_DefaultOpen );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
const auto normalized = ShortenZoneName( ShortenName::OnlyNormalize, frameName );
|
||||||
|
expand = ImGui::TreeNodeEx( normalized, ImGuiTreeNodeFlags_DefaultOpen );
|
||||||
|
TooltipNormalizedName( frameName, normalized );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if( m_shortenName == ShortenName::Never )
|
||||||
{
|
{
|
||||||
expand = ImGui::TreeNode( frameName );
|
expand = ImGui::TreeNode( frameName );
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
const auto normalized = ShortenZoneName( ShortenName::OnlyNormalize, frameName );
|
||||||
|
expand = ImGui::TreeNode( normalized );
|
||||||
|
TooltipNormalizedName( frameName, normalized );
|
||||||
|
}
|
||||||
|
}
|
||||||
if( isKernel || frameName[0] == '[' ) ImGui::PopStyleColor();
|
if( isKernel || frameName[0] == '[' ) ImGui::PopStyleColor();
|
||||||
ImGui::PopID();
|
ImGui::PopID();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user