mirror of
https://github.com/wolfpld/tracy
synced 2025-05-01 13:13:53 +00:00
Mark inline symbols.
This commit is contained in:
parent
fdd50840a7
commit
d84495d0e1
@ -13885,6 +13885,11 @@ void View::DrawSampleParents()
|
|||||||
ImGui::Begin( "Call stack sample parents", &show, ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoScrollWithMouse );
|
ImGui::Begin( "Call stack sample parents", &show, ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoScrollWithMouse );
|
||||||
ImGui::PushFont( m_bigFont );
|
ImGui::PushFont( m_bigFont );
|
||||||
TextFocused( "Symbol:", m_worker.GetString( symbol->name ) );
|
TextFocused( "Symbol:", m_worker.GetString( symbol->name ) );
|
||||||
|
if( symbol->isInline )
|
||||||
|
{
|
||||||
|
ImGui::SameLine();
|
||||||
|
TextDisabledUnformatted( "(inline)" );
|
||||||
|
}
|
||||||
ImGui::PopFont();
|
ImGui::PopFont();
|
||||||
TextDisabledUnformatted( "Location:" );
|
TextDisabledUnformatted( "Location:" );
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user