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.
This commit is contained in:
wm4 2015-05-30 21:00:37 +02:00
parent 47d841458d
commit a3f7b38cbc
1 changed files with 3 additions and 3 deletions

View File

@ -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
};