From f4e340b573c9841848113a1d6aeafa3d07eee9a0 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 17 May 2025 17:10:15 +0200 Subject: [PATCH] Add note about context size estimation. --- profiler/src/profiler/TracyLlm.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profiler/src/profiler/TracyLlm.cpp b/profiler/src/profiler/TracyLlm.cpp index c171ca9d..dc6bf723 100644 --- a/profiler/src/profiler/TracyLlm.cpp +++ b/profiler/src/profiler/TracyLlm.cpp @@ -197,6 +197,8 @@ void TracyLlm::Draw() PrintStringPercent( buf, m_usedCtx / (float)ctxSize * 100 ); tracy::TextDisabledUnformatted( buf ); TextFocused( "Available context size:", RealToString( ctxSize ) ); + ImGui::Separator(); + tracy::TextDisabledUnformatted( ICON_FA_TRIANGLE_EXCLAMATION " Context use may be an estimate" ); ImGui::EndTooltip(); }