diff options
| author | Paul Oliver <contact@pauloliver.dev> | 2026-05-12 22:52:37 +0200 |
|---|---|---|
| committer | Paul Oliver <contact@pauloliver.dev> | 2026-05-25 04:38:15 +0200 |
| commit | be2c37ac8c8e317eb7e05829ff2078c1b3bbce4e (patch) | |
| tree | 46caefa23c106ae789bdd49ab59daeca69cb2d3d /data/plots.c | |
| parent | 522e11c8086b7d8ab76b9be07c1861f35ed2327f (diff) | |
Reimplement client with ImGui and ImPlot (scaffold)
Diffstat (limited to 'data/plots.c')
| -rw-r--r-- | data/plots.c | 35 |
1 files changed, 0 insertions, 35 deletions
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); |
