summaryrefslogtreecommitdiffstats
path: root/video/out/vo.c
diff options
context:
space:
mode:
authorRostislav Pehlivanov <atomnuker@gmail.com>2017-10-01 21:07:05 +0100
committerRostislav Pehlivanov <atomnuker@gmail.com>2017-10-03 19:35:59 +0100
commit980116360b0f393e16064ec3b7a4ef9efb14372e (patch)
treef1727fb43a5c0cefad24f9e8e8e075817f4f2076 /video/out/vo.c
parent4e5d7cbf2134d891a0cb48318b01c1a7133938a2 (diff)
downloadmpv-980116360b0f393e16064ec3b7a4ef9efb14372e.tar.bz2
mpv-980116360b0f393e16064ec3b7a4ef9efb14372e.tar.xz
vo_wayland: remove
This VO was buggy and never worked correctly. Like with wayland_common, it needs to be rewritten from scratch.
Diffstat (limited to 'video/out/vo.c')
-rw-r--r--video/out/vo.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index 4eb0558147..d761300a47 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -61,7 +61,6 @@ extern const struct vo_driver video_out_drm;
extern const struct vo_driver video_out_direct3d;
extern const struct vo_driver video_out_sdl;
extern const struct vo_driver video_out_vaapi;
-extern const struct vo_driver video_out_wayland;
extern const struct vo_driver video_out_rpi;
extern const struct vo_driver video_out_tct;
@@ -77,9 +76,6 @@ const struct vo_driver *const video_out_drivers[] =
#if HAVE_DIRECT3D
&video_out_direct3d,
#endif
-#if HAVE_WAYLAND
- &video_out_wayland,
-#endif
#if HAVE_XV
&video_out_xv,
#endif