]> git.karo-electronics.de Git - oswald.git/blob - ui/oswald_fonts.c
add missing files
[oswald.git] / ui / oswald_fonts.c
1 #include "oswald_fonts.h"
2
3 #include "fonts/4x6_horizontal_LSB_1.h"
4 #include "fonts/5x8_horizontal_LSB_1.h"
5 #include "fonts/5x12_horizontal_LSB_1.h"
6 #include "fonts/6x8_horizontal_LSB_1.h"
7 #include "fonts/6x10_horizontal_LSB_1.h"
8 #include "fonts/7x12b_horizontal_LSB_1.h"
9 #include "fonts/7x12_horizontal_LSB_1.h"
10 #include "fonts/8x8_horizontal_LSB_1.h"
11 #include "fonts/8x12_horizontal_LSB_1.h"
12 #include "fonts/8x14_horizontal_LSB_1.h"
13 #include "fonts/10x16_horizontal_LSB_1.h"
14 #include "fonts/12x16_horizontal_LSB_1.h"
15 #include "fonts/12x20_horizontal_LSB_1.h"
16 #include "fonts/16x26_horizontal_LSB_1.h"
17 #include "fonts/22x36_horizontal_LSB_1.h"
18 #include "fonts/24x40_horizontal_LSB_1.h"
19 #include "fonts/32x53_horizontal_LSB_1.h"
20
21 const oswald_font oswald_fonts[LAST_FONT] = {
22         { 4, 6, (char **)font_4x6},
23         { 5, 8, (char **)font_5x8},
24         { 5, 12, (char **)font_5x12},
25         { 6, 8, (char **)font_6x8},
26         { 6, 10, (char **)font_6x10},
27         { 7, 12, (char **)font_7x12},
28         { 7, 12, (char **)font_7x12b},
29         { 8, 8, (char **)font_8x8},
30         { 8, 12, (char **)font_8x12},
31         { 8, 14, (char **)font_8x14},
32         { 10, 16, (char **)font_10x16},
33         { 12, 16, (char **)font_12x16},
34         { 12, 20, (char **)font_12x20},
35         { 16, 26, (char **)font_16x26},
36         { 22, 36, (char **)font_22x36},
37         { 24, 40, (char **)font_24x40},
38         { 32, 53, (char **)font_32x53},
39 };
40