summaryrefslogtreecommitdiffstats
path: root/video/out/vo.c
diff options
context:
space:
mode:
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