]> git.vomp.tv Git - vompclient.git/blob - bogl.h
Initial import
[vompclient.git] / bogl.h
1 #ifndef BOGL_H
2 #define BOGL_H
3
4 /*
5  * This header file is here for font .c files that are created with the
6  * bdftobogl utility that comes with bogl.
7  */
8
9 typedef struct bogl_font {
10   char *name;     /* Font name. */
11   int height;     /* Height in pixels. */
12   unsigned long *content;   /* 32-bit right-padded bitmap array. */
13   short *offset;      /* 256 offsets into content. */
14   unsigned char *width;   /* 256 character widths. */
15 } osd_font_t;
16
17 #endif /* BOGL_H */