summaryrefslogtreecommitdiffstats
path: root/video/out/vo.c
diff options
context:
space:
mode:
authorMarcin Kurczewski <mkurczew@gmail.com>2015-04-15 18:14:14 +0200
committerwm4 <wm4@nowhere>2015-04-16 21:07:25 +0200
commit7ee18376a9df40bc7aa4253f5e58203f788d73bc (patch)
treebf0fe1464389e57a2cb0625a0710242113176684 /video/out/vo.c
parentd55c41501f3500d5d301f3cb4ea5c40816f9baae (diff)
downloadmpv-7ee18376a9df40bc7aa4253f5e58203f788d73bc.tar.bz2
mpv-7ee18376a9df40bc7aa4253f5e58203f788d73bc.tar.xz
vo_drm: add KMS/DRM renderer support
Signed-off-by: wm4 <wm4@nowhere>
Diffstat (limited to 'video/out/vo.c')
-rw-r--r--video/out/vo.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index 4600205cb7..0e42193dbf 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -57,6 +57,7 @@ extern const struct vo_driver video_out_null;
extern const struct vo_driver video_out_image;
extern const struct vo_driver video_out_lavc;
extern const struct vo_driver video_out_caca;
+extern const struct vo_driver video_out_drm;
extern const struct vo_driver video_out_direct3d;
extern const struct vo_driver video_out_direct3d_shaders;
extern const struct vo_driver video_out_sdl;
@@ -97,6 +98,9 @@ const struct vo_driver *const video_out_drivers[] =
#if HAVE_CACA
&video_out_caca,
#endif
+#if HAVE_DRM
+ &video_out_drm,
+#endif
#if HAVE_ENCODING
&video_out_lavc,
#endif