1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-15 11:37:03 +00:00
mpv/Gui/skin/font.h
pontscho 897670e751 add font free func.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1830 b3059339-0415-0410-9bf9-f77b7e298cf2
2001-09-01 19:57:44 +00:00

31 lines
567 B
C

#ifndef _MYFONT
#define _MYFONT
#include "../bitmap/bitmap.h"
typedef struct
{
int x,y; // location
int sx,sy; // size
} fntChar;
typedef struct
{
fntChar Fnt[256];
txSample Bitmap;
char name[128];
} bmpFont;
extern fntChar Fnt[256];
extern txSample Bitmap;
extern bmpFont * Fonts[25];
extern int fntAddNewFont( char * name );
extern void fntFreeFont( void );
extern int fntFindID( char * name );
extern int fntRead( char * path,char * fname,int id );
extern txSample * fntRender( int id,int px,int sx,char * fmt,... );
#endif