0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

vo_direct3d: fix build

Broken by previous commit. Fix completely untested.
This commit is contained in:
wm4 2017-08-22 17:32:05 +02:00
parent 03cf150ff3
commit 1b2185657f

View File

@ -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",
};