summaryrefslogtreecommitdiffstats
path: root/video/d3d.h
blob: 30bee49adcbb042f2a92aef529c8dfa6da32d4f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef MP_D3D_H_
#define MP_D3D_H_

#include <d3d9.h>

#include "hwdec.h"

struct mp_d3d_ctx {
    struct mp_hwdec_ctx hwctx;
    IDirect3DDevice9 *d3d9_device;
};

#endif