Mercurial > mplayer.hg
annotate libvo/font_load.h @ 251:ea2dcb082185
alpha rendering, virtual screensize reset fix
author | szabii |
---|---|
date | Thu, 29 Mar 2001 17:59:21 +0000 |
parents | 09d565842a33 |
children | e7e89cd4169f |
rev | line source |
---|---|
213 | 1 |
2 typedef struct { | |
3 unsigned char *bmp; | |
4 unsigned char *pal; | |
5 int w,h,c; | |
6 } raw_file; | |
7 | |
8 typedef struct { | |
214 | 9 char *name; |
213 | 10 int spacewidth; |
11 int charspace; | |
12 int height; | |
13 // char *fname_a; | |
14 // char *fname_b; | |
15 raw_file* pic_a[16]; | |
16 raw_file* pic_b[16]; | |
17 short font[512]; | |
18 short start[512]; | |
19 short width[512]; | |
20 } font_desc_t; | |
21 | |
22 raw_file* load_raw(char *name); | |
215 | 23 font_desc_t* read_font_desc(char* fname,float factor); |