mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Display child sample counts in info window.
This commit is contained in:
parent
34b80ac52f
commit
32e3c0ebb1
@ -13801,6 +13801,13 @@ void View::DrawInfo()
|
||||
}
|
||||
TextFocused( "Call stack samples:", RealToString( m_worker.GetCallstackSampleCount() ) );
|
||||
TextFocused( "Ghost zones:", RealToString( m_worker.GetGhostZonesCount() ) );
|
||||
TextFocused( "Child sample symbols:", RealToString( m_worker.GetChildSamplesCountSyms() ) );
|
||||
if( ImGui::IsItemHovered() )
|
||||
{
|
||||
ImGui::BeginTooltip();
|
||||
TextFocused( "Child samples:", RealToString( m_worker.GetChildSamplesCountFull() ) );
|
||||
ImGui::EndTooltip();
|
||||
}
|
||||
TextFocused( "Frame images:", RealToString( ficnt ) );
|
||||
if( ficnt != 0 && ImGui::IsItemHovered() )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user