µGFX  2.9
version 2.9
gdisp_mk.c
1 /*
2  * This file is subject to the terms of the GFX License. If a copy of
3  * the license was not distributed with this file, you can obtain one at:
4  *
5  * http://ugfx.io/license.html
6  */
7 
8 /* The very first thing that has to be compiled here is mf_font.c so that
9  * inclusion of the font header files does not stop the inclusion of the
10  * implementation specific parts of the font files.
11  */
12 #include "mcufont/mf_font.c"
13 #include "mcufont/mf_rlefont.c"
14 #include "mcufont/mf_bwfont.c"
15 #include "mcufont/mf_scaledfont.c"
16 #include "mcufont/mf_encoding.c"
17 #include "mcufont/mf_justify.c"
18 #include "mcufont/mf_kerning.c"
19 #include "mcufont/mf_wordwrap.c"
20 
21 #include "gdisp.c"
22 #include "gdisp_fonts.c"
23 #include "gdisp_pixmap.c"
24 #include "gdisp_image.c"
25 #include "gdisp_image_native.c"
26 #include "gdisp_image_gif.c"
27 #include "gdisp_image_bmp.c"
28 #include "gdisp_image_jpg.c"
29 #include "gdisp_image_png.c"