From cd4704fd52dfe163ebeab5cc86dc2e8aafb7f6df Mon Sep 17 00:00:00 2001 From: Evan Pezent Date: Fri, 9 Jul 2021 20:23:12 -0700 Subject: [PATCH] revert OffsetAndStride --- implot.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/implot.h b/implot.h index d045cbf..316915b 100644 --- a/implot.h +++ b/implot.h @@ -537,8 +537,6 @@ template IMPLOT_API void PlotBarsH(const char* label_id, const T* v template IMPLOT_API void PlotBarsH(const char* label_id, const T* xs, const T* ys, int count, double height, int offset=0, int stride=sizeof(T)); IMPLOT_API void PlotBarsHG(const char* label_id, ImPlotPoint (*getter)(void* data, int idx), void* data, int count, double height, int offset=0); - - // Plots vertical error bar. The label_id should be the same as the label_id of the associated line or bar plot. template IMPLOT_API void PlotErrorBars(const char* label_id, const T* xs, const T* ys, const T* err, int count, int offset=0, int stride=sizeof(T)); template IMPLOT_API void PlotErrorBars(const char* label_id, const T* xs, const T* ys, const T* neg, const T* pos, int count, int offset=0, int stride=sizeof(T));