mirror of
https://github.com/mpv-player/mpv
synced 2024-11-03 03:19:24 +01:00
b85321d057
Since we still read-back (and don't have hard plans on changing this), this doesn't have much of an advantage.
14 lines
173 B
C
14 lines
173 B
C
#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
|