mirror of
https://github.com/wolfpld/tracy
synced 2025-04-29 04:23:51 +00:00
Change memory call stack tree icons.
This commit is contained in:
parent
667112c71f
commit
98edee9b07
@ -3118,7 +3118,7 @@ This view may be helpful in assessing the general memory behavior of the applica
|
||||
\subsubsection{Bottom-up call stack tree}
|
||||
\label{callstacktree}
|
||||
|
||||
The \emph{\faAlignJustify{}~Bottom-up call stack tree} pane is only available, if the memory events were collecting the call stack data (section~\ref{collectingcallstacks}). In this view you are presented with a tree of memory allocations, starting at the call stack entry point and going up to the allocation's pinpointed place. Each level of the tree is sorted according to the number of bytes allocated in given branch.
|
||||
The \emph{\faTree{}~Bottom-up call stack tree} pane is only available, if the memory events were collecting the call stack data (section~\ref{collectingcallstacks}). In this view you are presented with a tree of memory allocations, starting at the call stack entry point and going up to the allocation's pinpointed place. Each level of the tree is sorted according to the number of bytes allocated in given branch.
|
||||
|
||||
Each tree node consists of three elements: the function name, the source file location and the memory allocation data. The memory allocation data is either yellow \emph{inclusive} events count (allocations performed by children), or the cyan \emph{exclusive} events count (allocations that took place in the node)\footnote{Due to the way call stacks work there is no possibility for an entry to have both inclusive and exclusive counts, in a properly instrumented program.}. There are two values that are counted: total memory size and number of allocations.
|
||||
|
||||
|
@ -17328,7 +17328,7 @@ void View::DrawMemory()
|
||||
|
||||
ImGui::PushID( m_memInfo.pool );
|
||||
ImGui::Separator();
|
||||
if( ImGui::TreeNode( ICON_FA_ALIGN_JUSTIFY " Bottom-up call stack tree" ) )
|
||||
if( ImGui::TreeNode( ICON_FA_TREE " Bottom-up call stack tree" ) )
|
||||
{
|
||||
ImGui::SameLine();
|
||||
DrawHelpMarker( "Press ctrl key to display allocation info tooltip. Right click on function name to display allocations list." );
|
||||
@ -17358,7 +17358,7 @@ void View::DrawMemory()
|
||||
}
|
||||
|
||||
ImGui::Separator();
|
||||
if( ImGui::TreeNode( ICON_FA_ALIGN_JUSTIFY " Top-down call stack tree" ) )
|
||||
if( ImGui::TreeNode( ICON_FA_TREE " Top-down call stack tree" ) )
|
||||
{
|
||||
ImGui::SameLine();
|
||||
DrawHelpMarker( "Press ctrl key to display allocation info tooltip. Right click on function name to display allocations list." );
|
||||
|
Loading…
x
Reference in New Issue
Block a user