1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-12 18:06:18 +00:00
mpv/Gui/skin/font.h
arpi 6a75d05038 missing newlines fixed
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2083 b3059339-0415-0410-9bf9-f77b7e298cf2
2001-10-04 20:33:29 +00:00

33 lines
569 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