summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 540fedb132..9b06794c61 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -171,20 +171,17 @@ const struct vo_driver *video_out_drivers[] =
#endif
#ifdef CONFIG_GL
&video_out_gl3,
+#if !defined CONFIG_GL_COCOA
+ &video_out_gl,
#endif
-#ifdef CONFIG_X11
-#ifdef CONFIG_GL
- &video_out_gl_nosw,
#endif
+#ifdef CONFIG_X11
&video_out_x11,
&video_out_xover,
#endif
#ifdef CONFIG_SDL
&video_out_sdl,
#endif
-#if (defined CONFIG_GL && !defined CONFIG_GL_COCOA)
- &video_out_gl,
-#endif
#ifdef CONFIG_DGA
&video_out_dga,
#endif
@@ -248,6 +245,11 @@ const struct vo_driver *video_out_drivers[] =
#ifdef CONFIG_MD5SUM
&video_out_md5sum,
#endif
+#ifdef CONFIG_X11
+#ifdef CONFIG_GL
+ &video_out_gl_nosw,
+#endif
+#endif
NULL
};