1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Update font awesome and migrate to v6 headers.

This commit is contained in:
Bartosz Taudul
2022-08-17 12:07:38 +02:00
parent ef35c01e14
commit 4bcb59bbe6
28 changed files with 13638 additions and 11229 deletions
+4 -4
View File
@@ -352,7 +352,7 @@ void View::DrawZoneInfoWindow()
{
SetButtonHighlightColor();
}
if( ImGui::Button( ICON_FA_FILE_ALT " Source" ) )
if( ImGui::Button( ICON_FA_FILE_LINES " Source" ) )
{
ViewSource( fileName, srcloc.line );
}
@@ -674,7 +674,7 @@ void View::DrawZoneInfoWindow()
}
else
{
ImGui::Text( "%i " ICON_FA_LONG_ARROW_ALT_RIGHT " %i", cpu0, cpu1 );
ImGui::Text( "%i " ICON_FA_RIGHT_LONG " %i", cpu0, cpu1 );
const auto tt0 = m_worker.GetThreadTopology( cpu0 );
const auto tt1 = m_worker.GetThreadTopology( cpu1 );
if( tt0 && tt1 )
@@ -721,7 +721,7 @@ void View::DrawZoneInfoWindow()
if( memNameMap.size() > 1 )
{
ImGui::AlignTextToFramePadding();
TextDisabledUnformatted( ICON_FA_ARCHIVE " Memory pool:" );
TextDisabledUnformatted( ICON_FA_BOX_ARCHIVE " Memory pool:" );
ImGui::SameLine();
if( ImGui::BeginCombo( "##memoryPool", m_zoneInfoMemPool == 0 ? "Default allocator" : m_worker.GetString( m_zoneInfoMemPool ) ) )
{
@@ -1403,7 +1403,7 @@ void View::DrawGpuInfoWindow()
{
SetButtonHighlightColor();
}
if( ImGui::Button( ICON_FA_FILE_ALT " Source" ) )
if( ImGui::Button( ICON_FA_FILE_LINES " Source" ) )
{
ViewSource( fileName, srcloc.line );
}