mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Consistently use "entry call stacks".
This commit is contained in:
parent
d8e9d369a0
commit
b80899863b
1
NEWS
1
NEWS
@ -32,6 +32,7 @@ v0.x.x (xxxx-xx-xx)
|
|||||||
- Fixed color channel order in ZoneColor() macro.
|
- Fixed color channel order in ZoneColor() macro.
|
||||||
- Handle failure state when a memory pointer allocation is reported twice,
|
- Handle failure state when a memory pointer allocation is reported twice,
|
||||||
without an intermediate free.
|
without an intermediate free.
|
||||||
|
- Renamed "call stack parents" to "entry call stacks".
|
||||||
- Display number of entry call stacks in assembly line sample count tooltip.
|
- Display number of entry call stacks in assembly line sample count tooltip.
|
||||||
|
|
||||||
|
|
||||||
|
@ -15294,7 +15294,7 @@ void View::DrawSampleParents()
|
|||||||
|
|
||||||
bool show = true;
|
bool show = true;
|
||||||
ImGui::SetNextWindowSize( ImVec2( 1400, 500 ), ImGuiCond_FirstUseEver );
|
ImGui::SetNextWindowSize( ImVec2( 1400, 500 ), ImGuiCond_FirstUseEver );
|
||||||
ImGui::Begin( "Call stack sample parents", &show, ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoScrollWithMouse );
|
ImGui::Begin( "Sample entry call stacks", &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 )
|
if( symbol->isInline )
|
||||||
@ -15338,7 +15338,7 @@ void View::DrawSampleParents()
|
|||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
TextDisabledUnformatted( m_worker.GetString( symbol->imageName ) );
|
TextDisabledUnformatted( m_worker.GetString( symbol->imageName ) );
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
TextDisabledUnformatted( "Parent call stack:" );
|
TextDisabledUnformatted( "Entry call stack:" );
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
if( ImGui::SmallButton( " " ICON_FA_CARET_LEFT " " ) )
|
if( ImGui::SmallButton( " " ICON_FA_CARET_LEFT " " ) )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user