# HG changeset patch # User reimar # Date 1267138384 0 # Node ID a8256156fca570851114162ab3c077d258e960e9 # Parent 1f2ecb6a3f3d5de404a1e3f9c0e7035943d161f9 Reorder vos: prioritize -vo gl above -vo x11 and -vo matrixview down with aa, caca etc. diff -r 1f2ecb6a3f3d -r a8256156fca5 libvo/video_out.c --- a/libvo/video_out.c Thu Feb 25 22:51:23 2010 +0000 +++ b/libvo/video_out.c Thu Feb 25 22:53:04 2010 +0000 @@ -186,17 +186,16 @@ #ifdef CONFIG_XV &video_out_xv, #endif +#ifdef CONFIG_GL + &video_out_gl, +#endif #ifdef CONFIG_X11 &video_out_x11, &video_out_xover, #endif #ifdef CONFIG_GL - &video_out_gl, &video_out_gl2, #endif -#ifdef CONFIG_MATRIXVIEW - &video_out_matrixview, -#endif #ifdef CONFIG_DGA &video_out_dga, #endif @@ -213,6 +212,9 @@ #ifdef CONFIG_SVGALIB &video_out_svga, #endif +#ifdef CONFIG_MATRIXVIEW + &video_out_matrixview, +#endif #ifdef CONFIG_AA &video_out_aa, #endif