mirror of
https://github.com/mpv-player/mpv
synced 2024-12-14 10:55:43 +00:00
2a8b8d1d43
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8059 b3059339-0415-0410-9bf9-f77b7e298cf2
34 lines
622 B
C
34 lines
622 B
C
|
|
#ifndef _FONT_H
|
|
#define _FONT_H
|
|
|
|
#include "../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 txSample Bitmap;
|
|
extern bmpFont * Fonts[26];
|
|
|
|
extern int fntAddNewFont( char * name );
|
|
extern void fntFreeFont( void );
|
|
extern int fntFindID( char * name );
|
|
extern int fntTextHeight( int id,char * str );
|
|
extern int fntTextWidth( int id,char * str );
|
|
|
|
extern int fntRead( char * path,char * fname );
|
|
extern txSample * fntRender( int id,int px,int sx,char * fmt,... );
|
|
|
|
#endif
|
|
|