From d16223fd257ccc1d7060e372eb3d950cf68f8d37 Mon Sep 17 00:00:00 2001 From: jaseg Date: Fri, 7 Mar 2014 00:49:16 +0100 Subject: Modified text rendering to something frame based --- host/font.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host/font.h') diff --git a/host/font.h b/host/font.h index e9fbb35..ad7f851 100644 --- a/host/font.h +++ b/host/font.h @@ -30,6 +30,6 @@ glyphtable_t *read_bdf(FILE *f); void free_glyphtable(glyphtable_t *glyph_table); // Requires buf to point to a buffer at least of size glyph->width*glyph->height. -void render_glyph(glyph_t *glyph, color_t *buf, unsigned int bufwidth, unsigned int offx, unsigned int offy, color_t fg, color_t bg); +void render_glyph(glyph_t *g, color_t *buf, unsigned int bufwidth, int offx, unsigned int offy, color_t fg, color_t bg); #endif//__FONT_H__ -- cgit