summaryrefslogtreecommitdiffstats
path: root/include/linux/font.h
blob: 572d4bb2d3905b4689907b4d09a9ca60e2f01e21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef LINUX_FONT_H
#define LINUX_FONT_H

struct font_desc {
	int         idx;
	const char *name;
	int         width;
	int         height;
	const void *data;
	int         pref;
};

#define MPLUS_1MN_MEDIUM_10x14_IDX  0
#define MPLUS_1MN_REGULAR_12x17_IDX 1
#define MPLUS_1MN_REGULAR_14x19_IDX 2
#define MPLUS_1MN_REGULAR_16x22_IDX 3

extern const struct font_desc font_mplus_1mn_medium_10x14;
extern const struct font_desc font_mplus_1mn_regular_12x17;
extern const struct font_desc font_mplus_1mn_regular_14x19;
extern const struct font_desc font_mplus_1mn_regular_16x22;

#endif  /* LINUX_FONT_H */