1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Differentiate hw samples from code addresses.

This commit is contained in:
Bartosz Taudul
2021-05-19 23:29:27 +02:00
parent 2e38e70049
commit 3a0e12043d
3 changed files with 19 additions and 1 deletions
+6
View File
@@ -13923,6 +13923,12 @@ void View::DrawInfo()
}
#endif
TextFocused( "Hardware samples:", RealToString( m_worker.GetHwSampleCount() ) );
if( ImGui::IsItemHovered() )
{
ImGui::BeginTooltip();
TextFocused( "Unique addresses:", RealToString( m_worker.GetHwSampleCountAddress() ) );
ImGui::EndTooltip();
}
TextFocused( "Frame images:", RealToString( ficnt ) );
if( ficnt != 0 && ImGui::IsItemHovered() )
{