summaryrefslogtreecommitdiffstats
path: root/video/out/gl_common.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-11-04 00:12:04 +0100
committerwm4 <wm4@nowhere>2014-11-04 01:41:37 +0100
commitbebfaae66614e2ccc2b35e4190cd4cee058a4b99 (patch)
tree7d02bce27681696a4f353e5f985eae435ad6d1c5 /video/out/gl_common.c
parentdc1d851c92f6c10014c964f601d770afd2d92522 (diff)
downloadmpv-bebfaae66614e2ccc2b35e4190cd4cee058a4b99.tar.bz2
mpv-bebfaae66614e2ccc2b35e4190cd4cee058a4b99.tar.xz
vo_opengl: minimal EGL on X11 support
Pretty useless and only good for testing. Does not include any form of GLES support.
Diffstat (limited to 'video/out/gl_common.c')
-rw-r--r--video/out/gl_common.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/video/out/gl_common.c b/video/out/gl_common.c
index 7bffa486d2..195ad72539 100644
--- a/video/out/gl_common.c
+++ b/video/out/gl_common.c
@@ -880,6 +880,9 @@ static const struct backend backends[] = {
#if HAVE_GL_X11
{"x11", mpgl_set_backend_x11},
#endif
+#if HAVE_EGL_X11
+ {"x11egl", mpgl_set_backend_x11egl},
+#endif
{0}
};