summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2008-10-30 08:25:33 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2008-10-30 08:25:33 +0200
commit2ad77c5b00ce5d03c5db7633ef12dbe71a297e05 (patch)
tree1e67ba0f8057bcdb52f236f32c9c151e20ec8acf /libvo
parent479f5e742f22d46430fa265adfa9162f4e2ab865 (diff)
parentaf97f644ed6f72ea72a112b3734d61f42149b6a3 (diff)
downloadmpv-2ad77c5b00ce5d03c5db7633ef12dbe71a297e05.tar.bz2
mpv-2ad77c5b00ce5d03c5db7633ef12dbe71a297e05.tar.xz
Merge svn changes up to r27850
Diffstat (limited to 'libvo')
-rw-r--r--libvo/x11_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/x11_common.c b/libvo/x11_common.c
index b8446c94f9..674f5d3af9 100644
--- a/libvo/x11_common.c
+++ b/libvo/x11_common.c
@@ -1214,7 +1214,7 @@ static Window vo_x11_create_smooth_window(struct vo_x11_state *x11, Window mRoot
unsigned int width, unsigned int height,
int depth, Colormap col_map)
{
- unsigned long xswamask = CWBackingStore | CWBorderPixel;
+ unsigned long xswamask = CWBorderPixel;
XSetWindowAttributes xswa;
Window ret_win;
@@ -1225,7 +1225,7 @@ static Window vo_x11_create_smooth_window(struct vo_x11_state *x11, Window mRoot
}
xswa.background_pixel = 0;
xswa.border_pixel = 0;
- xswa.backing_store = Always;
+ xswa.backing_store = NotUseful;
xswa.bit_gravity = StaticGravity;
ret_win =