diff options
author | wm4 <wm4@nowhere> | 2015-05-13 23:40:52 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-05-14 00:05:39 +0200 |
commit | 10de9b091a59e4831bb3fbfc46eb1d3c7558c9d8 (patch) | |
tree | dbb20ff7a385a8992f11cc036658a9f3dbf4b2c9 /video/out/gl_common.h | |
parent | 27da344e6f88166a236da0e3c2163c05125e4cb3 (diff) | |
download | mpv-10de9b091a59e4831bb3fbfc46eb1d3c7558c9d8.tar.bz2 mpv-10de9b091a59e4831bb3fbfc46eb1d3c7558c9d8.tar.xz |
vo_opengl: change user options for requesting GLES
Instead of having separate backends, make use of GLES a flag. This
reduces the number of backends and the resulting annoyances.
Also, nobody cares about using GLES, so there's no backward
compatibility either.
Diffstat (limited to 'video/out/gl_common.h')
-rw-r--r-- | video/out/gl_common.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/video/out/gl_common.h b/video/out/gl_common.h index deee69c15c..7d037cd518 100644 --- a/video/out/gl_common.h +++ b/video/out/gl_common.h @@ -128,9 +128,7 @@ int mpgl_validate_backend_opt(struct mp_log *log, const struct m_option *opt, void mpgl_set_backend_cocoa(MPGLContext *ctx); void mpgl_set_backend_w32(MPGLContext *ctx); void mpgl_set_backend_x11(MPGLContext *ctx); -void mpgl_set_backend_x11es(MPGLContext *ctx); void mpgl_set_backend_x11egl(MPGLContext *ctx); -void mpgl_set_backend_x11egles(MPGLContext *ctx); void mpgl_set_backend_wayland(MPGLContext *ctx); void mpgl_set_backend_rpi(MPGLContext *ctx); |