summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-08-22 17:32:05 +0200
committerwm4 <wm4@nowhere>2017-08-22 17:32:05 +0200
commit1b2185657f5df67609b65ea389c5e0d64bc30111 (patch)
tree3a6038cd7cf98514f3c292c80e25e6f73ab8773d /video
parent03cf150ff3516789d581214177f291d46310aaf4 (diff)
downloadmpv-1b2185657f5df67609b65ea389c5e0d64bc30111.tar.bz2
mpv-1b2185657f5df67609b65ea389c5e0d64bc30111.tar.xz
vo_direct3d: fix build
Broken by previous commit. Fix completely untested.
Diffstat (limited to 'video')
-rw-r--r--video/out/vo_direct3d.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/video/out/vo_direct3d.c b/video/out/vo_direct3d.c
index 687bb972a9..952dca85ce 100644
--- a/video/out/vo_direct3d.c
+++ b/video/out/vo_direct3d.c
@@ -1697,10 +1697,6 @@ static const struct m_option opts[] = {
{0}
};
-static const d3d_priv defaults = {
- .video_eq = { MP_CSP_EQ_CAPS_COLORMATRIX },
-};
-
const struct vo_driver video_out_direct3d = {
.description = "Direct3D 9 Renderer",
.name = "direct3d",
@@ -1712,7 +1708,6 @@ const struct vo_driver video_out_direct3d = {
.flip_page = flip_page,
.uninit = uninit,
.priv_size = sizeof(d3d_priv),
- .priv_defaults = &defaults,
.options = opts,
.options_prefix = "vo-direct3d",
};