From e6baee2bf936caf16a7c94e5d36d88b883e6a6da Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 22 Mar 2019 20:11:10 +0100 Subject: [PATCH] Reduce number of max plot probes per column. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index fd0a5e5c..c64e48ce 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -3683,7 +3683,7 @@ int View::DrawPlots( int offset, double pxns, const ImVec2& wpos, bool hover, fl { const auto PlotHeight = 100 * ImGui::GetTextLineHeight() / 15.f; - enum { MaxPoints = 512 }; + enum { MaxPoints = 128 }; float tmpvec[MaxPoints*2]; const auto w = ImGui::GetWindowContentRegionWidth() - 1;