Rename pango_printf to render_text

This avoids using the pango_ prefix, reserved for functions coming
from the Pango library.
This commit is contained in:
Simon Ser 2021-09-13 14:07:27 +02:00 committed by Kenny Levinsen
parent 671bb448a1
commit 3f7a04df22
5 changed files with 12 additions and 12 deletions

View file

@ -18,7 +18,7 @@ PangoLayout *get_pango_layout(cairo_t *cairo, const char *font,
void get_text_size(cairo_t *cairo, const char *font, int *width, int *height,
int *baseline, double scale, bool markup, const char *fmt, ...);
void get_text_metrics(const char *font, int *height, int *baseline);
void pango_printf(cairo_t *cairo, const char *font,
void render_text(cairo_t *cairo, const char *font,
double scale, bool markup, const char *fmt, ...);
#endif