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 /src/xine-engine/osd.h | |
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 'src/xine-engine/osd.h')
-rw-r--r-- | src/xine-engine/osd.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/xine-engine/osd.h b/src/xine-engine/osd.h index 26b53bdad..a3e40f821 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.11 2002/11/20 18:41:14 mroi Exp $ + * $Id: osd.h,v 1.12 2003/02/11 16:42:42 miguelfreitas Exp $ */ #ifndef HAVE_OSD_H @@ -167,6 +167,13 @@ struct osd_renderer_s { */ void (*clear) (osd_object_t *osd ); + /* + * paste a bitmap with optional palette mapping + */ + void (*draw_bitmap) (osd_object_t *osd, uint8_t *bitmap, + int x1, int y1, int width, int height, + uint8_t *palette_map); + /* private stuff */ pthread_mutex_t osd_mutex; |