aboutsummaryrefslogtreecommitdiff
path: root/src/draw.h
diff options
context:
space:
mode:
authorFederico Angelilli <code@fedang.net>2024-03-23 11:16:24 +0100
committerFederico Angelilli <code@fedang.net>2024-03-23 11:16:24 +0100
commit46de28e9789618b2ea7af66c461f3f7db5ef0bd5 (patch)
tree00a4493d538895b168ba9852a07319a71e553788 /src/draw.h
parent12f20dd7cd742e0cf54543ea5a1642b911ed1ec6 (diff)
Implement initial hidpi scaling
Diffstat (limited to 'src/draw.h')
-rw-r--r--src/draw.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/draw.h b/src/draw.h
index 6d0119f..433f063 100644
--- a/src/draw.h
+++ b/src/draw.h
@@ -60,7 +60,7 @@ void draw_set_font(Drawer *draw, const char *font);
void draw_set_context(Drawer *draw, PangoContext *context);
-void draw_set_size(Drawer *draw, int height, int left_pad, int right_pad, int top_pad);
+void draw_set_size(Drawer *draw, int height, int left_pad, int right_pad, int top_pad, double scale);
void draw_destroy(Drawer *draw);