Update manual.

This commit is contained in:
Bartosz Taudul 2019-11-05 18:16:58 +01:00
parent c558a9a436
commit 25c39a3311

View File

@ -867,6 +867,14 @@ If using the \texttt{TracyLockable} or \texttt{TracySharedLockable} wrappers doe
Tracy is able to capture and draw numeric value changes over time. You may use it to analyze draw call counts, number of performed queries, etc. To report data, use the \texttt{TracyPlot(name, value)} macro.
To configure how plot values are presented by the profiler, you may use the \texttt{TracyPlotConfig(name, format)} macro, where \texttt{format} is one of the following options:
\begin{itemize}
\item \texttt{tracy::PlotFormatType::Number} -- values will be displayed as plain numbers.
\item \texttt{tracy::PlotFormatType::Memory} -- treats the values as memory sizes. Will display kilobytes, megabytes, etc.
\item \texttt{tracy::PlotFormatType::Percentage} -- values will be displayed as percentage (with value $100$ being equal to $100\%$).
\end{itemize}
\subsection{Message log}
\label{messagelog}