diff options
author | Julian Scheel <julian@jusst.de> | 2008-12-28 19:47:18 +0000 |
---|---|---|
committer | Julian Scheel <julian@jusst.de> | 2008-12-28 19:47:18 +0000 |
commit | 5c9bcbcefee17fdd254bcecd3865cd1a5202134b (patch) | |
tree | e6266f62559ed145293f1ec320602c97234981b1 /include | |
parent | c233c9834cd68408c5975368268c560c85c095a7 (diff) | |
download | xine-lib-5c9bcbcefee17fdd254bcecd3865cd1a5202134b.tar.gz xine-lib-5c9bcbcefee17fdd254bcecd3865cd1a5202134b.tar.bz2 |
Fix argb overlay; allow partial buffer updates to improve performance.
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index 79db9024e..f66ed0d3e 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -2205,7 +2205,8 @@ void xine_osd_set_palette (xine_osd_t *self, * set an argb buffer to be blended into video * this is currently only supported with vdpau */ -void xine_osd_set_argb_buffer(xine_osd_t *self, uint32_t *argb_buffer) XINE_PROTECTED; +void xine_osd_set_argb_buffer(xine_osd_t *self, uint32_t *argb_buffer, + int x, int y, int width, int height) XINE_PROTECTED; /* * close osd rendering engine |