comparison libvo/font_load.h @ 213:6ec8f6ab6cb1

subtitle+OSD font support
author arpi_esp
date Sun, 25 Mar 2001 04:28:40 +0000
parents
children 09d0f437b817
comparison
equal deleted inserted replaced
212:7034ef1f685d 213:6ec8f6ab6cb1
1
2 typedef struct {
3 unsigned char *bmp;
4 unsigned char *pal;
5 int w,h,c;
6 } raw_file;
7
8 typedef struct {
9 int spacewidth;
10 int charspace;
11 int height;
12 // char *fname_a;
13 // char *fname_b;
14 raw_file* pic_a[16];
15 raw_file* pic_b[16];
16 short font[512];
17 short start[512];
18 short width[512];
19 } font_desc_t;
20
21 raw_file* load_raw(char *name);
22 font_desc_t* read_font_desc(char* fname);