summaryrefslogtreecommitdiffstats
path: root/src/image.h
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-07-17 17:55:58 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-07-17 17:55:58 (EDT)
commit3077a5e0c9079d329dd08a5ffb6a75670d78dc4e (patch)
treef3b60d22e40c48015f5603bdac64e9f304678704 /src/image.h
parentee6f735ac7b6c3122412c09d1514b7b2f7b80141 (diff)
image_render(): Use font dimensions
Diffstat (limited to 'src/image.h')
-rw-r--r--src/image.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/image.h b/src/image.h
index c9ab567..361296e 100644
--- a/src/image.h
+++ b/src/image.h
@@ -24,13 +24,15 @@
#include "text.h"
+#include "font.h"
+
struct image;
struct image *
image_new(const char *file_name);
void
-image_render(struct image *image, struct text *text);
+image_render(struct image *image, struct text *text, struct font *font);
struct image *
image_destroy(struct image **image);