summaryrefslogtreecommitdiffstats
path: root/video/out/gpu
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-10-16 23:31:37 +0200
committerwm4 <wm4@nowhere>2019-10-16 23:41:06 +0200
commitb7eae31834ed6ecd724d68b2939d6b9073b1d296 (patch)
treec2a19afb190e659cd54888de265ea933cee92ddc /video/out/gpu
parenta1c7d613935424b69b31a9c5898e006ea989726a (diff)
downloadmpv-b7eae31834ed6ecd724d68b2939d6b9073b1d296.tar.bz2
mpv-b7eae31834ed6ecd724d68b2939d6b9073b1d296.tar.xz
vo_gpu: hwdec_d3d11eglrgb: remove this
Finally. Since with the previous commit we can (probably) handle P010 directly, this hack isn't needed anymore.
Diffstat (limited to 'video/out/gpu')
-rw-r--r--video/out/gpu/hwdec.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/video/out/gpu/hwdec.c b/video/out/gpu/hwdec.c
index ed96bf529f..f1c941cdc9 100644
--- a/video/out/gpu/hwdec.c
+++ b/video/out/gpu/hwdec.c
@@ -31,7 +31,6 @@ extern const struct ra_hwdec_driver ra_hwdec_videotoolbox;
extern const struct ra_hwdec_driver ra_hwdec_vdpau;
extern const struct ra_hwdec_driver ra_hwdec_dxva2egl;
extern const struct ra_hwdec_driver ra_hwdec_d3d11egl;
-extern const struct ra_hwdec_driver ra_hwdec_d3d11eglrgb;
extern const struct ra_hwdec_driver ra_hwdec_dxva2gldx;
extern const struct ra_hwdec_driver ra_hwdec_dxva2;
extern const struct ra_hwdec_driver ra_hwdec_d3d11va;
@@ -51,7 +50,6 @@ const struct ra_hwdec_driver *const ra_hwdec_drivers[] = {
#if HAVE_D3D_HWACCEL
#if HAVE_EGL_ANGLE
&ra_hwdec_d3d11egl,
- &ra_hwdec_d3d11eglrgb,
#if HAVE_D3D9_HWACCEL
&ra_hwdec_dxva2egl,
#endif