diff options
| author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-05-09 21:05:34 +0000 |
|---|---|---|
| committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-05-09 21:05:34 +0000 |
| commit | 5671c03a3ce844335635a6c3bac63dcc9f157cb8 (patch) | |
| tree | 4ac336414ba29d82cff86568b56e6b82ae8cb1a2 /src/video_out/video_out_vidix.c | |
| parent | e3bc7e97b83039c27a6e60bdfff9660d1452d996 (diff) | |
| download | xine-lib-5671c03a3ce844335635a6c3bac63dcc9f157cb8.tar.gz xine-lib-5671c03a3ce844335635a6c3bac63dcc9f157cb8.tar.bz2 | |
some more colorkey fixes and cleanups
CVS patchset: 6506
CVS date: 2004/05/09 21:05:34
Diffstat (limited to 'src/video_out/video_out_vidix.c')
| -rw-r--r-- | src/video_out/video_out_vidix.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/video_out/video_out_vidix.c b/src/video_out/video_out_vidix.c index 1f7fffae8..dbfa876fa 100644 --- a/src/video_out/video_out_vidix.c +++ b/src/video_out/video_out_vidix.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_vidix.c,v 1.62 2004/05/06 03:09:32 miguelfreitas Exp $ + * $Id: video_out_vidix.c,v 1.63 2004/05/09 21:05:34 miguelfreitas Exp $ * * video_out_vidix.c * @@ -280,8 +280,10 @@ static void vidix_clean_output_area(vidix_driver_t *this) { XSetForeground(this->display, this->gc, this->colourkey); XFillRectangle(this->display, this->drawable, this->gc, this->sc.output_xoffset, this->sc.output_yoffset, this->sc.output_width, this->sc.output_height); - if (this->xoverlay) + if (this->xoverlay) { x11osd_resize (this->xoverlay, this->sc.gui_width, this->sc.gui_height); + this->ovl_changed = 1; + } XFlush(this->display); |
