diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-05-06 03:09:32 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-05-06 03:09:32 +0000 |
commit | 535b68fd76105ad5ae2c3c3812e6444eac9c59ce (patch) | |
tree | 17e9018a90c1d2a8bc72cddaa65170181afb943c /src/video_out/video_out_xshm.c | |
parent | bfe36df3f6502e3db75ccd33c08cdc7256dc63ec (diff) | |
download | xine-lib-535b68fd76105ad5ae2c3c3812e6444eac9c59ce.tar.gz xine-lib-535b68fd76105ad5ae2c3c3812e6444eac9c59ce.tar.bz2 |
implement proper x11osd resize support. that should fix problems with rc4
where parts of the image were not shown under certain circunstances.
XV_AUTOPAINT_COLORKEY is now disabled by default. that will permit using
colorkey overlays by default with more cards (eg. nvidia).
CVS patchset: 6491
CVS date: 2004/05/06 03:09:32
Diffstat (limited to 'src/video_out/video_out_xshm.c')
-rw-r--r-- | src/video_out/video_out_xshm.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/video_out/video_out_xshm.c b/src/video_out/video_out_xshm.c index 51df7dfa2..62dc26032 100644 --- a/src/video_out/video_out_xshm.c +++ b/src/video_out/video_out_xshm.c @@ -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: video_out_xshm.c,v 1.130 2004/04/26 17:50:11 mroi Exp $ + * $Id: video_out_xshm.c,v 1.131 2004/05/06 03:09:32 miguelfreitas Exp $ * * video_out_xshm.c, X11 shared memory extension interface for xine * @@ -683,6 +683,9 @@ static void clean_output_area (xshm_driver_t *this, xshm_frame_t *frame) { this->sc.border[i].x, this->sc.border[i].y, this->sc.border[i].w, this->sc.border[i].h); } + if (this->xoverlay) + x11osd_resize (this->xoverlay, this->sc.gui_width, this->sc.gui_height); + XUnlockDisplay (this->display); } |