aboutsummaryrefslogtreecommitdiff
path: root/draw.c
diff options
context:
space:
mode:
Diffstat (limited to 'draw.c')
-rw-r--r--draw.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/draw.c b/draw.c
index 7f77927..ebaf004 100644
--- a/draw.c
+++ b/draw.c
@@ -6,6 +6,12 @@
#include "draw.h"
#include "log.h"
+// Idea: Either make a to_draw queue where we put things we schedule to redraw
+// (this will also work for animations in the future)
+// or use some flags to trigger drawing
+//
+// Anyway, a drawing context struct is required
+
// Make this a state passed to draw
int draw_height, draw_x_padding, draw_y_padding;
PangoFontDescription *desc;