xine-lib  1.2.9
gfontlib.h
Go to the documentation of this file.
1 #ifndef _GFONTLIB_H
2 #define _GFONTLIB_H
3 
4 #include "goom_graphic.h"
5 
6 typedef struct goomfont_s goomfont_t;
7 
8 goomfont_t *gfont_load (void);
9 void gfont_unload (goomfont_t **);
10 
11 void goom_draw_text (goomfont_t *, Pixel * buf, int resolx, int resoly, int x, int y,
12  const char *str, float chspace, int center);
13 
14 #endif
Definition: gfontlib.c:11
Definition: goom_graphic.h:55
void goom_draw_text(goomfont_t *, Pixel *buf, int resolx, int resoly, int x, int y, const char *str, float chspace, int center)
Definition: gfontlib.c:179
goomfont_t * gfont_load(void)
Definition: gfontlib.c:54
void gfont_unload(goomfont_t **)
Definition: gfontlib.c:20