From a3f7b38cbc22f9eabdcc494deae7a4ab8b1add67 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 30 May 2015 21:00:37 +0200 Subject: vo: move up vo_wayland in autoprobe list When running on Wayland, and vo_opengl is not available or rejected for some reason, it's better to use vo_wayland instead of e.g. vo_x11. --- video/out/vo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'video') diff --git a/video/out/vo.c b/video/out/vo.c index 82eb78ff6e..696f755cf8 100644 --- a/video/out/vo.c +++ b/video/out/vo.c @@ -80,6 +80,9 @@ const struct vo_driver *const video_out_drivers[] = &video_out_direct3d_shaders, &video_out_direct3d, #endif +#if HAVE_WAYLAND + &video_out_wayland, +#endif #if HAVE_XV &video_out_xv, #endif @@ -107,9 +110,6 @@ const struct vo_driver *const video_out_drivers[] = #if HAVE_GL &video_out_opengl_hq, &video_out_opengl_cb, -#endif -#if HAVE_WAYLAND - &video_out_wayland, #endif NULL }; -- cgit v1.2.3