glcd driver: Implement user selectable cell size (if FreeType enabled), big

numbers using FreeType and 16x24 built-in font. Complete API towards LCDd
and connection types.
This commit is contained in:
mmdolze
2011-11-20 11:15:39 +00:00
parent fdd440219d
commit e45822c37d
6 changed files with 381 additions and 53 deletions
+2 -1
View File
@@ -5,9 +5,10 @@ int glcd_render_init(Driver *drvthis);
void glcd_render_close(Driver *drvthis);
void glcd_render_char(Driver *drvthis, int x, int y, unsigned char c);
int glcd_render_icon(Driver *drvthis, int x, int y, int icon);
void glcd_render_bignum(Driver *drvthis, int x, int num);
#ifdef HAVE_FT2
void glcd_render_char_unicode(Driver *drvthis, int x, int y, int c);
void glcd_render_char_unicode(Driver *drvthis, int x, int y, int c, int yscale, int xscale);
#endif
#endif