From 31337a04861e7eb57f52ad87c97529ac2db97556 Mon Sep 17 00:00:00 2001 From: ZavGaro Date: Tue, 25 Jun 2024 16:25:17 +0300 Subject: [PATCH] Correct ProfilerGraph documentation --- src/gui/profilergraph.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/gui/profilergraph.h b/src/gui/profilergraph.h index ef33d797d..1563d3c48 100644 --- a/src/gui/profilergraph.h +++ b/src/gui/profilergraph.h @@ -29,12 +29,14 @@ with this program; if not, write to the Free Software Foundation, Inc., /** \brief Draws graph every frame using data given by Profiler. - It displays only entries that recorded for profiler graph (via Profiler::graphAdd, + It displays only entries that are recorded for profiler graph (via Profiler::graphAdd, ScopeProfilerType::SPT_GRAPH_ADD and other) and Profiler itself doesn't show them. - Each profiling entry described with upper graph value, entry name and lower graph + Each profiling entry described with upper bound value, entry name and lower bound value on its right. Graph is displayed as \e line if it is relative (lower value is not 0) and \e filled if it is absolute. + + \ingroup Profiling */ class ProfilerGraph {