summaryrefslogtreecommitdiffstats
path: root/video/out/gpu/context.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-06-30 01:02:45 +0200
committerwm4 <wm4@nowhere>2019-09-19 20:37:05 +0200
commitc6773692adba9d65fd43313f07a8aab9af2aa80d (patch)
tree22382516c5726fa478c4c719b7a0dc9d77af7cf5 /video/out/gpu/context.c
parent83d7123dc32e7fb8b1e05ed21af845707d115295 (diff)
downloadmpv-c6773692adba9d65fd43313f07a8aab9af2aa80d.tar.bz2
mpv-c6773692adba9d65fd43313f07a8aab9af2aa80d.tar.xz
vo_gpu: remove vdpau/GLX backend
Useless garbage. This was once added to test whether vdpau presentation feedback could be used. Results were always unsatisfactory, and now vdpau is dead.
Diffstat (limited to 'video/out/gpu/context.c')
-rw-r--r--video/out/gpu/context.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/video/out/gpu/context.c b/video/out/gpu/context.c
index 767d4612e8..bf38e4c9bc 100644
--- a/video/out/gpu/context.c
+++ b/video/out/gpu/context.c
@@ -44,7 +44,6 @@ extern const struct ra_ctx_fns ra_ctx_angle;
extern const struct ra_ctx_fns ra_ctx_dxgl;
extern const struct ra_ctx_fns ra_ctx_rpi;
extern const struct ra_ctx_fns ra_ctx_android;
-extern const struct ra_ctx_fns ra_ctx_vdpauglx;
/* Vulkan */
extern const struct ra_ctx_fns ra_ctx_vulkan_wayland;
@@ -90,9 +89,6 @@ static const struct ra_ctx_fns *contexts[] = {
#if HAVE_EGL_DRM
&ra_ctx_drm_egl,
#endif
-#if HAVE_VDPAU_GL_X11
- &ra_ctx_vdpauglx,
-#endif
// Vulkan contexts:
#if HAVE_VULKAN