summaryrefslogtreecommitdiffstats
path: root/src/image.h
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-07-18 02:43:45 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-07-18 02:43:45 (EDT)
commitc5da456687d8b51d8d2360cabc1966387ebc72b9 (patch)
tree23f97459ec1fcb4f4620e6985fa632e353e03a6f /src/image.h
parentf0351693ac1558505cf15c61c3ea4a1f12c3d67b (diff)
font_*(), text_*(), image_*(): Add const qualifiers
Diffstat (limited to 'src/image.h')
-rw-r--r--src/image.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/image.h b/src/image.h
index b303c23..ece53f7 100644
--- a/src/image.h
+++ b/src/image.h
@@ -38,7 +38,8 @@ struct image *
image_new(const char *file_name);
void
-image_render(struct image *image, struct text *text, struct font *font);
+image_render(struct image *image, const struct text *text,
+ const struct font *font);
struct image *
image_destroy(struct image **image);