mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-26 07:54:36 +00:00
Context menu hide of GPU zones.
This commit is contained in:
parent
fa8a071334
commit
3aa62a18cc
@ -318,6 +318,7 @@ void View::DrawTimeline()
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
bool& showFull = vis.showFull;
|
bool& showFull = vis.showFull;
|
||||||
|
ImGui::PushID( &vis );
|
||||||
|
|
||||||
const auto yPos = AdjustThreadPosition( vis, wpos.y, offset );
|
const auto yPos = AdjustThreadPosition( vis, wpos.y, offset );
|
||||||
const auto oldOffset = offset;
|
const auto oldOffset = offset;
|
||||||
@ -468,6 +469,10 @@ void View::DrawTimeline()
|
|||||||
ZoomToRange( t0, t1 );
|
ZoomToRange( t0, t1 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if( IsMouseClicked( 1 ) )
|
||||||
|
{
|
||||||
|
ImGui::OpenPopup( "menuPopup" );
|
||||||
|
}
|
||||||
|
|
||||||
ImGui::BeginTooltip();
|
ImGui::BeginTooltip();
|
||||||
ImGui::TextUnformatted( buf );
|
ImGui::TextUnformatted( buf );
|
||||||
@ -570,8 +575,19 @@ void View::DrawTimeline()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if( ImGui::BeginPopup( "menuPopup" ) )
|
||||||
|
{
|
||||||
|
if( ImGui::MenuItem( ICON_FA_EYE_SLASH " Hide" ) )
|
||||||
|
{
|
||||||
|
vis.visible = false;
|
||||||
|
ImGui::CloseCurrentPopup();
|
||||||
|
}
|
||||||
|
ImGui::EndPopup();
|
||||||
|
}
|
||||||
|
|
||||||
AdjustThreadHeight( vis, oldOffset, offset );
|
AdjustThreadHeight( vis, oldOffset, offset );
|
||||||
ImGui::PopClipRect();
|
ImGui::PopClipRect();
|
||||||
|
ImGui::PopID();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user