summaryrefslogtreecommitdiffstats
path: root/video/d3d.h
diff options
context:
space:
mode:
Diffstat (limited to 'video/d3d.h')
-rw-r--r--video/d3d.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/video/d3d.h b/video/d3d.h
index 30bee49adc..b5cf365f7f 100644
--- a/video/d3d.h
+++ b/video/d3d.h
@@ -2,12 +2,14 @@
#define MP_D3D_H_
#include <d3d9.h>
+#include <d3d11.h>
#include "hwdec.h"
struct mp_d3d_ctx {
struct mp_hwdec_ctx hwctx;
IDirect3DDevice9 *d3d9_device;
+ ID3D11Device *d3d11_device;
};
#endif