aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/client/pango.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/client/pango.h b/include/client/pango.h
index 66843041..dd2f53c3 100644
--- a/include/client/pango.h
+++ b/include/client/pango.h
@@ -5,10 +5,12 @@
#include <pango/pangocairo.h>
#include <stdarg.h>
#include <stdbool.h>
+#include <stdint.h>
-PangoLayout *get_pango_layout(cairo_t *cairo, const char *font, const char *text, bool markup);
+PangoLayout *get_pango_layout(cairo_t *cairo, const char *font, const char *text,
+ int32_t scale, bool markup);
void get_text_size(cairo_t *cairo, const char *font, int *width, int *height,
- bool markup, const char *fmt, ...);
-void pango_printf(cairo_t *cairo, const char *font, bool markup, const char *fmt, ...);
+ int32_t scale, bool markup, const char *fmt, ...);
+void pango_printf(cairo_t *cairo, const char *font, int32_t scale, bool markup, const char *fmt, ...);
#endif