| 2966 | |
| 2967 | template <typename T> |
| 2968 | void PlotPieChart(const char* const label_ids[], const T* values, int count, double x, double y, double radius, const char* fmt, double angle0, const ImPlotSpec& spec) { |
| 2969 | PlotPieChart<T>(label_ids, values, count, x, y, radius, PieChartFormatter, (void*)fmt, angle0, spec); |
| 2970 | } |
| 2971 | #define INSTANTIATE_MACRO(T) template IMPLOT_API void PlotPieChart<T>(const char* const label_ids[], const T* values, int count, double x, double y, double radius, const char* fmt, double angle0, const ImPlotSpec& spec); |
| 2972 | CALL_INSTANTIATE_FOR_NUMERIC_TYPES() |
| 2973 | #undef INSTANTIATE_MACRO |
no test coverage detected