diff libvo/video_out.c @ 9569:894d02a6469e

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.
author albeu
date Wed, 12 Mar 2003 15:04:05 +0000
parents 8feb4bb5b334
children 07f4553269dd
line wrap: on
line diff
--- a/libvo/video_out.c	Wed Mar 12 14:58:55 2003 +0000
+++ b/libvo/video_out.c	Wed Mar 12 15:04:05 2003 +0000
@@ -52,6 +52,7 @@
 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 @@
 #endif
 #ifdef HAVE_X11
         &video_out_x11,
+        &video_out_xover,
 #endif
 #ifdef HAVE_GL
         &video_out_gl,