mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Collapse multiple callstack samples.
This commit is contained in:
parent
5e2390604d
commit
2ec3813cb3
@ -3213,24 +3213,73 @@ void View::DrawSamples( const Vector<SampleData>& vec, bool hover, double pxns,
|
|||||||
|
|
||||||
const auto ty0375 = offset + round( ImGui::GetFontSize() * 0.375f );
|
const auto ty0375 = offset + round( ImGui::GetFontSize() * 0.375f );
|
||||||
const auto ty02 = round( ImGui::GetFontSize() * 0.2f );
|
const auto ty02 = round( ImGui::GetFontSize() * 0.2f );
|
||||||
const auto y0 = ty0375 - ty02;
|
const auto ty01 = round( ImGui::GetFontSize() * 0.1f );
|
||||||
|
const auto y0 = ty0375 - ty02 - 3;
|
||||||
const auto y1 = ty0375 + ty02 - 1;
|
const auto y1 = ty0375 + ty02 - 1;
|
||||||
auto draw = ImGui::GetWindowDrawList();
|
auto draw = ImGui::GetWindowDrawList();
|
||||||
|
|
||||||
|
enum { MinVis = 6 };
|
||||||
|
bool tooltipDisplayed = false;
|
||||||
|
|
||||||
while( it < itend )
|
while( it < itend )
|
||||||
{
|
{
|
||||||
auto& ev = *it;
|
bool visible = true;
|
||||||
const auto px0 = ( it->time.Val() - m_vd.zvStart ) * pxns;
|
const auto px0 = ( it->time.Val() - m_vd.zvStart ) * pxns;
|
||||||
draw->AddCircleFilled( wpos + ImVec2( px0, ty0375 ), ty02, 0xFFDD8888, 7 );
|
double px1;
|
||||||
if( hover && ImGui::IsMouseHoveringRect( wpos + ImVec2( px0 - ty02, y0 ), wpos + ImVec2( px0 + ty02, y1 ) ) )
|
auto next = it+1;
|
||||||
|
int num;
|
||||||
|
if( next != itend )
|
||||||
{
|
{
|
||||||
|
px1 = ( next->time.Val() - m_vd.zvStart ) * pxns;
|
||||||
|
if( px1 - px0 < MinVis )
|
||||||
|
{
|
||||||
|
visible = false;
|
||||||
|
auto nextTime = px0 + MinVis * nspx;
|
||||||
|
for(;;)
|
||||||
|
{
|
||||||
|
const auto prev = next;
|
||||||
|
next = std::lower_bound( next, itend, nextTime, [] ( const auto& l, const auto& r ) { return l.time.Val() < r; } );
|
||||||
|
if( prev == next ) ++next;
|
||||||
|
if( next == itend ) break;
|
||||||
|
const auto pxnext = ( next->time.Val() - m_vd.zvStart ) * pxns;
|
||||||
|
if( pxnext - px1 >= MinVis ) break;
|
||||||
|
px1 = pxnext;
|
||||||
|
nextTime = next->time.Val() + nspx;
|
||||||
|
}
|
||||||
|
num = next - it;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if( visible )
|
||||||
|
{
|
||||||
|
draw->AddCircleFilled( wpos + ImVec2( px0, ty0375 ), ty02, 0xFFDD8888, 7 );
|
||||||
|
if( !tooltipDisplayed && hover && ImGui::IsMouseHoveringRect( wpos + ImVec2( px0 - ty02 - 2, y0 ), wpos + ImVec2( px0 + ty02 + 1, y1 ) ) )
|
||||||
|
{
|
||||||
|
tooltipDisplayed = true;
|
||||||
CallstackTooltip( it->callstack.Val() );
|
CallstackTooltip( it->callstack.Val() );
|
||||||
if( ImGui::IsMouseClicked( 0 ) )
|
if( ImGui::IsMouseClicked( 0 ) )
|
||||||
{
|
{
|
||||||
m_callstackInfoWindow = it->callstack.Val();
|
m_callstackInfoWindow = it->callstack.Val();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
++it;
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
DrawZigZag( draw, wpos + ImVec2( 0, ty0375 ), px0, std::max( px1, px0+MinVis ), ty01, 0xFF997777 );
|
||||||
|
if( hover && ImGui::IsMouseHoveringRect( wpos + ImVec2( px0, y0 ), wpos + ImVec2( std::max( px1, px0+MinVis ), y1 ) ) )
|
||||||
|
{
|
||||||
|
ImGui::BeginTooltip();
|
||||||
|
ImGui::TextUnformatted( "Multiple call stack samples" );
|
||||||
|
TextFocused( "Number of samples:", RealToString( num ) );
|
||||||
|
ImGui::EndTooltip();
|
||||||
|
|
||||||
|
if( ImGui::IsMouseClicked( 2 ) )
|
||||||
|
{
|
||||||
|
const auto prev = next-1;
|
||||||
|
ZoomToRange( it->time.Val(), prev->time.Val() + 1 );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
it = next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user