| 2590 | |
| 2591 | template <typename T> |
| 2592 | void PlotErrorBars(const char* label_id, const T* xs, const T* ys, const T* err, int count, const ImPlotSpec& spec) { |
| 2593 | PlotErrorBars(label_id, xs, ys, err, err, count, spec); |
| 2594 | } |
| 2595 | |
| 2596 | template <typename T> |
| 2597 | void PlotErrorBars(const char* label_id, const T* xs, const T* ys, const T* neg, const T* pos, int count, const ImPlotSpec& spec) { |
no test coverage detected