From 86385dcaf789170bc1ca60210f204e8d1c2fc2e6 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 15 Jan 2018 23:13:02 +0100 Subject: [PATCH] Start creating d3d_texture_t --- gfx/common/d3d_common.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gfx/common/d3d_common.h b/gfx/common/d3d_common.h index ab65dbdee1..b74fccb609 100644 --- a/gfx/common/d3d_common.h +++ b/gfx/common/d3d_common.h @@ -24,6 +24,12 @@ RETRO_BEGIN_DECLS +typedef struct d3d_texture +{ + LPDIRECT3DTEXTURE data; + D3DPOOL pool; +} d3d_texture_t; + bool d3d_swap(void *data, LPDIRECT3DDEVICE dev); LPDIRECT3DVERTEXBUFFER d3d_vertex_buffer_new(LPDIRECT3DDEVICE dev,