Maybe gif-lib wasn't too bright an idea...

This commit is contained in:
jaseg 2014-01-03 16:40:44 +01:00
parent 9ef5c135e8
commit d27f9ecf7e
199 changed files with 481 additions and 2434004 deletions

View file

@ -23,6 +23,6 @@ typedef struct {
int read_bdf(FILE *f, glyph_t **glyph_table, unsigned int glyph_table_size);
// Requires buf to point to a buffer at least of size glyph->width*glyph->height.
void render_glyph(glyph_t *glyph, uint8_t *buf, unsigned int bufwidth, unsigned int offx, unsigned int offy, color_t fg, color_t bg);
void render_glyph(glyph_t *glyph, color_t *buf, unsigned int bufwidth, unsigned int offx, unsigned int offy, color_t fg, color_t bg);
#endif//__FONT_H__