mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 14:44:34 +00:00
Extend max asm line width, if needed.
This commit is contained in:
parent
76f3207bc4
commit
bdd4d28770
@ -2349,6 +2349,9 @@ uint64_t SourceView::RenderSymbolAsmView( const AddrStatData& as, Worker& worker
|
||||
{
|
||||
RenderAsmLine( m_asm[i], zero.ipMaxAsm, zero, worker, jumpOut, maxAddrLen, view );
|
||||
insList.emplace_back( m_asm[i].addr );
|
||||
const auto win = ImGui::GetCurrentWindowRead();
|
||||
const auto lineWidth = win->DC.CursorMaxPos.x - win->DC.CursorStartPos.x;
|
||||
if( lineWidth > m_asmWidth ) m_asmWidth = lineWidth;
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -2360,6 +2363,9 @@ uint64_t SourceView::RenderSymbolAsmView( const AddrStatData& as, Worker& worker
|
||||
const auto ipcnt = it == as.ipCountAsm.end() ? zero.ipMaxAsm : it->second;
|
||||
RenderAsmLine( line, ipcnt, as, worker, jumpOut, maxAddrLen, view );
|
||||
insList.emplace_back( line.addr );
|
||||
const auto win = ImGui::GetCurrentWindowRead();
|
||||
const auto lineWidth = win->DC.CursorMaxPos.x - win->DC.CursorStartPos.x;
|
||||
if( lineWidth > m_asmWidth ) m_asmWidth = lineWidth;
|
||||
}
|
||||
}
|
||||
if( m_showJumps && !m_jumpTable.empty() && clipper.DisplayStart != clipper.DisplayEnd )
|
||||
|
Loading…
Reference in New Issue
Block a user