From 6f9fa656730b61384908e8ddbd11825eae3a92b9 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Thu, 18 Jul 2019 19:45:29 -0400 Subject: Don't use libpng's pointer typedefs Pointers should be as obvious as possible. --- (limited to 'src/text.h') diff --git a/src/text.h b/src/text.h index a76e14e..900b7bd 100644 --- a/src/text.h +++ b/src/text.h @@ -46,7 +46,7 @@ size_t text_set_height(struct text *text, size_t height); void -text_render(const struct text *text, const struct font *font, png_bytepp rows); +text_render(const struct text *text, const struct font *font, png_byte **rows); struct text * text_destroy(struct text **text_p); -- cgit v0.9.1