diff --git a/Source/Engine/Profiler/ProfilerGPU.cpp b/Source/Engine/Profiler/ProfilerGPU.cpp index bd64c7369..bb333a121 100644 --- a/Source/Engine/Profiler/ProfilerGPU.cpp +++ b/Source/Engine/Profiler/ProfilerGPU.cpp @@ -475,6 +475,10 @@ void GraphicsDumping::Print() } sb.AppendLine(); } + { + // Summary at the bottom (eg. when used in Editor/log to quickly find total time) + sb.AppendFormat(TEXT("(avg: {} ms, {} FPS)"), Utilities::RoundTo2DecimalPlaces(draw.Time), (int32)(1000.0f / draw.Time)).AppendLine(); + } LOG_STR(Info, sb.ToStringView()); }