Skip to content

Commit

Permalink
Allow inspection of symbol from flame graph.
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfpld committed Sep 28, 2024
1 parent 5caeffa commit 98a064e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions profiler/src/profiler/TracyView_FlameGraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,11 @@ void View::DrawFlameGraphItem( const FlameGraphItem& item, FlameGraphContext& ct
ImGui::SameLine();
TextDisabledUnformatted( buf );
}

if( IsMouseClicked( 0 ) )
{
ViewDispatch( file, line, symAddr );
}
}
ImGui::EndTooltip();
}
Expand Down

0 comments on commit 98a064e

Please sign in to comment.