diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 064986e1..c8c4c878 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -3147,6 +3147,14 @@ void View::DrawZones() { TextFocused( "Timestamp accuracy:", TimeToString( v->period ) ); } + if( v->overflow != 0 ) + { + ImGui::Separator(); + ImGui::TextUnformatted( "GPU timer overflow has been detected." ); + TextFocused( "Timer resolution:", RealToString( 63 - TracyLzcnt( v->overflow ) ) ); + ImGui::SameLine(); + TextDisabledUnformatted( "bits" ); + } ImGui::EndTooltip(); } }