summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'desktop')
-rw-r--r--desktop/knockout.c3
-rw-r--r--desktop/plotters.h1
2 files changed, 3 insertions, 1 deletions
diff --git a/desktop/knockout.c b/desktop/knockout.c
index eeab21c11..59f3aaf8f 100644
--- a/desktop/knockout.c
+++ b/desktop/knockout.c
@@ -70,7 +70,8 @@ const struct plotter_table knockout_plotters = {
knockout_plot_bitmap,
knockout_plot_bitmap_tile,
knockout_plot_group_start,
- knockout_plot_group_end
+ knockout_plot_group_end,
+ knockout_plot_flush
};
diff --git a/desktop/plotters.h b/desktop/plotters.h
index d10de3a2a..cf8143307 100644
--- a/desktop/plotters.h
+++ b/desktop/plotters.h
@@ -41,6 +41,7 @@ struct plotter_table {
bool repeat_x, bool repeat_y);
bool (*group_start)(const char *name); /** optional */
bool (*group_end)(void); /** optional */
+ bool (*flush)(void);
};
/** Current plotters, must be assigned before use. */