comparison 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
comparison
equal deleted inserted replaced
9568:ed8827c95386 9569:894d02a6469e
50 // Externally visible list of all vo drivers 50 // Externally visible list of all vo drivers
51 // 51 //
52 extern vo_functions_t video_out_mga; 52 extern vo_functions_t video_out_mga;
53 extern vo_functions_t video_out_xmga; 53 extern vo_functions_t video_out_xmga;
54 extern vo_functions_t video_out_x11; 54 extern vo_functions_t video_out_x11;
55 extern vo_functions_t video_out_xover;
55 extern vo_functions_t video_out_xv; 56 extern vo_functions_t video_out_xv;
56 extern vo_functions_t video_out_gl; 57 extern vo_functions_t video_out_gl;
57 extern vo_functions_t video_out_gl2; 58 extern vo_functions_t video_out_gl2;
58 extern vo_functions_t video_out_dga; 59 extern vo_functions_t video_out_dga;
59 extern vo_functions_t video_out_fsdga; 60 extern vo_functions_t video_out_fsdga;
129 #ifdef HAVE_XV 130 #ifdef HAVE_XV
130 &video_out_xv, 131 &video_out_xv,
131 #endif 132 #endif
132 #ifdef HAVE_X11 133 #ifdef HAVE_X11
133 &video_out_x11, 134 &video_out_x11,
135 &video_out_xover,
134 #endif 136 #endif
135 #ifdef HAVE_GL 137 #ifdef HAVE_GL
136 &video_out_gl, 138 &video_out_gl,
137 &video_out_gl2, 139 &video_out_gl2,
138 #endif 140 #endif