summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-11-09 11:21:28 +0100
committerwm4 <wm4@nowhere>2015-11-09 11:21:28 +0100
commit7d5282ea5d4d351d259e73b0051e7bd3e1658b53 (patch)
treed3a872b9979d5bf2b408eeb14d6d025c02b2009a
parentf757163058c2e5c7136213b0f79923fcea34b71a (diff)
downloadmpv-7d5282ea5d4d351d259e73b0051e7bd3e1658b53.tar.bz2
mpv-7d5282ea5d4d351d259e73b0051e7bd3e1658b53.tar.xz
vo_opengl: rename "drm_egl" to "drm-egl"
-rw-r--r--DOCS/man/vo.rst4
-rw-r--r--video/out/opengl/drm_egl.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/DOCS/man/vo.rst b/DOCS/man/vo.rst
index d7074a54e6..6d90046ea2 100644
--- a/DOCS/man/vo.rst
+++ b/DOCS/man/vo.rst
@@ -778,7 +778,7 @@ Available video output drivers are:
X11/GLX
wayland
Wayland/EGL
- drm_egl
+ drm-egl
DRM/EGL
x11egl
X11/EGL
@@ -1138,7 +1138,7 @@ Available video output drivers are:
Video output driver using Kernel Mode Setting / Direct Rendering Manager.
Should be used when one doesn't want to install full-blown graphical
environment (e.g. no X). Does not support hardware acceleration (if you
- need this, check ``drm_egl`` backend for ``opengl`` VO).
+ need this, check the ``drm-egl`` backend for ``opengl`` VO).
``connector=<number>``
Select the connector to use (usually this is a monitor.) If set to -1,
diff --git a/video/out/opengl/drm_egl.c b/video/out/opengl/drm_egl.c
index 5aa02ea2b7..f8e528201a 100644
--- a/video/out/opengl/drm_egl.c
+++ b/video/out/opengl/drm_egl.c
@@ -429,7 +429,7 @@ static void drm_egl_swap_buffers(MPGLContext *ctx)
}
const struct mpgl_driver mpgl_driver_drm_egl = {
- .name = "drm_egl",
+ .name = "drm-egl",
.priv_size = sizeof(struct priv),
.init = drm_egl_init,
.reconfig = drm_egl_reconfig,