custom
| 2045 | |
| 2046 | // custom |
| 2047 | void PlotScatterG(const char* label_id, ImPlotGetter getter_func, void* data, int count, const ImPlotSpec& spec) { |
| 2048 | GetterFuncPtr getter(getter_func,data, count); |
| 2049 | return PlotScatterEx(label_id, getter, spec); |
| 2050 | } |
| 2051 | |
| 2052 | //----------------------------------------------------------------------------- |
| 2053 | // [SECTION] PlotBubbles |
nothing calls this directly
no test coverage detected