summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authoralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-03-12 15:04:05 +0000
committeralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-03-12 15:04:05 +0000
commitd32fe2d5fa1a1907c8c83add24477bc059e78683 (patch)
tree8409ba26608389daa02f7438d5b4f0cf65fbf977 /libvo/video_out.c
parent6e87e75c6313300b1199ff984ab759834a9007bd (diff)
downloadmpv-d32fe2d5fa1a1907c8c83add24477bc059e78683.tar.bz2
mpv-d32fe2d5fa1a1907c8c83add24477bc059e78683.tar.xz
vo_xover is a new vo that should make easy to have x11 support for
all overlay based vo. Add support for xover to tdfx_vid. Sometimes the display flash bcs the x server fuckup the overlay settings :( Not so bad as it only append when i switch the focused window here. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9570 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 2a47568750..e287563cf8 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -52,6 +52,7 @@ int vo_directrendering=0;
extern vo_functions_t video_out_mga;
extern vo_functions_t video_out_xmga;
extern vo_functions_t video_out_x11;
+extern vo_functions_t video_out_xover;
extern vo_functions_t video_out_xv;
extern vo_functions_t video_out_gl;
extern vo_functions_t video_out_gl2;
@@ -131,6 +132,7 @@ vo_functions_t* video_out_drivers[] =
#endif
#ifdef HAVE_X11
&video_out_x11,
+ &video_out_xover,
#endif
#ifdef HAVE_GL
&video_out_gl,