Magellan Linux

Contents of /trunk/linterm_tools/fw_builder/bootsplash/ttf.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 658 - (show annotations) (download)
Mon Jan 14 16:57:24 2008 UTC (16 years, 3 months ago) by niro
File MIME type: text/plain
File size: 483 byte(s)
initial import

1 #define CACHED_METRICS 0x10
2 #define CACHED_BITMAP 0x01
3 #define CACHED_PIXMAP 0x02
4
5 #define TTF_STYLE_NORMAL 0x00
6 #define TTF_STYLE_BOLD 0x01
7 #define TTF_STYLE_ITALIC 0x02
8 #define TTF_STYLE_UNDERLINE 0x04
9
10 /* Handy routines for converting from fixed point */
11 #define FT_FLOOR(X) ((X & -64) / 64)
12 #define FT_CEIL(X) (((X + 63) & -64) / 64)
13
14 typedef struct _TTF_Font TTF_Font;
15
16 #define LUXISRI_SIZE 66372
17
18 extern char luxisri_ttf[LUXISRI_SIZE];