| 3422 | |
| 3423 | template <typename T> |
| 3424 | void PlotDigital(const char* label_id, const T* xs, const T* ys, int count, const ImPlotSpec& spec) { |
| 3425 | GetterXY<IndexerIdx<T>,IndexerIdx<T>> getter(IndexerIdx<T>(xs,count,spec.Offset,Stride<T>(spec)),IndexerIdx<T>(ys,count,spec.Offset,Stride<T>(spec)),count); |
| 3426 | return PlotDigitalEx(label_id, getter, spec); |
| 3427 | } |
| 3428 | #define INSTANTIATE_MACRO(T) template IMPLOT_API void PlotDigital<T>(const char* label_id, const T* xs, const T* ys, int count, const ImPlotSpec& spec); |
| 3429 | CALL_INSTANTIATE_FOR_NUMERIC_TYPES() |
| 3430 | #undef INSTANTIATE_MACRO |
no test coverage detected