diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-02-11 16:42:40 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-02-11 16:42:40 +0000 |
commit | 39c0fe482390f6657913635f344267e63cbf9005 (patch) | |
tree | fa90cad12fda2f9d509d2ea9d686e9e515cb419a /include | |
parent | 507fb444aeef4a7c863b7099661ccbb5d2ea4dd3 (diff) | |
download | xine-lib-39c0fe482390f6657913635f344267e63cbf9005.tar.gz xine-lib-39c0fe482390f6657913635f344267e63cbf9005.tar.bz2 |
add osd function to draw bitmaps (patch by Julio Sánchez <j.sanchezf@terra.es>)
CVS patchset: 4135
CVS date: 2003/02/11 16:42:40
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index f195c70cc..ce19ddb56 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.h.in,v 1.58 2003/01/29 02:33:35 miguelfreitas Exp $ + * $Id: xine.h.in,v 1.59 2003/02/11 16:42:40 miguelfreitas Exp $ * * public xine-lib (libxine) interface and documentation * @@ -1342,6 +1342,9 @@ void xine_osd_draw_rect (xine_osd_t *self, int x1, int y1, int color, int filled ); void xine_osd_draw_text (xine_osd_t *self, int x1, int y1, const char *text, int color_base); +void xine_osd_draw_bitmap (xine_osd_t *self, uint8_t *bitmap, + int x1, int y1, int width, int height, + uint8_t *palette_map); void xine_osd_get_text_size (xine_osd_t *self, const char *text, int *width, int *height); void xine_osd_set_font (xine_osd_t *self, const char *fontname, |