summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libvo/video_out.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 0d2dc713e5..b285458c87 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -186,17 +186,16 @@ const vo_functions_t* const video_out_drivers[] =
#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 @@ const vo_functions_t* const video_out_drivers[] =
#ifdef CONFIG_SVGALIB
&video_out_svga,
#endif
+#ifdef CONFIG_MATRIXVIEW
+ &video_out_matrixview,
+#endif
#ifdef CONFIG_AA
&video_out_aa,
#endif