diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-03-26 11:06:39 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-03-26 11:06:39 +0000 |
commit | 28bb8ccf2791599f24ec705c6075a747d7f10030 (patch) | |
tree | 14b1ea6d20fe7c1911ca662f7ad4ca665084ba7f /src/xine-engine/osd.h | |
parent | d042d5ac0e7ba8d77136c465a94c5683b16a0c9a (diff) | |
download | xine-lib-28bb8ccf2791599f24ec705c6075a747d7f10030.tar.gz xine-lib-28bb8ccf2791599f24ec705c6075a747d7f10030.tar.bz2 |
- font encoding cleanup patch by Frantisek Dvorak
- xinefonts use unicode now
- fix endianess in xine-fontconv.c
- public render text api uses locale
CVS patchset: 4486
CVS date: 2003/03/26 11:06:39
Diffstat (limited to 'src/xine-engine/osd.h')
-rw-r--r-- | src/xine-engine/osd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/osd.h b/src/xine-engine/osd.h index aa4b36baf..9c2959f77 100644 --- a/src/xine-engine/osd.h +++ b/src/xine-engine/osd.h @@ -18,7 +18,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * * OSD stuff (text and graphic primitives) - * $Id: osd.h,v 1.13 2003/03/08 17:22:16 f1rmb Exp $ + * $Id: osd.h,v 1.14 2003/03/26 11:06:58 miguelfreitas Exp $ */ #ifndef HAVE_OSD_H @@ -152,7 +152,7 @@ struct osd_renderer_s { * Use OSD_TEXT1, OSD_TEXT2, ... for some preasssigned color indices. */ int (*render_text) (osd_object_t *osd, int x1, int y1, - const char *text, int color_base); + const char *text, const char *encoding, int color_base); /* * get width and height of how text will be renderized |