From be2c37ac8c8e317eb7e05829ff2078c1b3bbce4e Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Tue, 12 May 2026 22:52:37 +0200 Subject: Reimplement client with ImGui and ImPlot (scaffold) --- data/plots.c | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 data/plots.c (limited to 'data/plots.c') diff --git a/data/plots.c b/data/plots.c deleted file mode 100644 index 211346f..0000000 --- a/data/plots.c +++ /dev/null @@ -1,35 +0,0 @@ -enum PlotType { - PLOT_LINES, -}; - -struct PlotDef { - const char *name; - const char *table; - enum PlotType plot_type; - const char **cols; -}; - -struct PlotDef g_general_plots_def[] = { - { .name = "cycl", .table = "general", .plot_type = PLOT_LINES, .cols = (const char *[]){ -#define FOR_CORE(i) "cycl_" #i, - FOR_CORES -#undef FOR_CORE - }}, - { .name = "mall", .table = "general", .plot_type = PLOT_LINES, .cols = (const char *[]){ -#define FOR_CORE(i) "mall_" #i, - FOR_CORES -#undef FOR_CORE - }}, - { .name = "pnum", .table = "general", .plot_type = PLOT_LINES, .cols = (const char *[]){ -#define FOR_CORE(i) "pnum_" #i, - FOR_CORES -#undef FOR_CORE - }}, - { .name = "ppop", .table = "general", .plot_type = PLOT_LINES, .cols = (const char *[]){ -#define FOR_CORE(i) "pfst_" #i, "plst_" #i, - FOR_CORES -#undef FOR_CORE - }}, -}; - -size_t g_general_plots_count = sizeof(g_general_plots_def) / sizeof(struct PlotDef); -- cgit v1.3