Add PNG connection type and Freetype 2 font rendering to glcd driver. The PNG

image writer is for debugging only. The Freetype font renderer still misses
some features (e.g. big numbers, character encoding, non-standard cell size).
This commit is contained in:
mmdolze
2011-11-03 22:09:24 +00:00
parent b1e8fa9fb8
commit 2e2bb53af8
13 changed files with 749 additions and 136 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef GLCD_RENDER_H
#define GLCD_RENDER_H
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);
#ifdef HAVE_FT2
void glcd_render_char_unicode(Driver *drvthis, int x, int y, int c);
#endif
#endif