diff options
Diffstat (limited to 'src/native/d3d/D3dCtx.hpp')
-rw-r--r-- | src/native/d3d/D3dCtx.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/native/d3d/D3dCtx.hpp b/src/native/d3d/D3dCtx.hpp index 2c3b8e2..f51925c 100644 --- a/src/native/d3d/D3dCtx.hpp +++ b/src/native/d3d/D3dCtx.hpp @@ -45,11 +45,24 @@ typedef struct _D3DVERTEX { float x, y, z; } D3DVERTEX; + typedef struct _D3DTLVERTEX { float sx, sy, sz, rhw; float tu, tv; } D3DTLVERTEX; +typedef struct _COORDTEXVERTEX { + float sx, sy, sz; + float tu, tv; +} COORDTEXVERTEX; + +typedef struct _COORDCLRTEXVERTEX { + float sx, sy, sz; + D3DCOLOR color; + float tu, tv; +} COORDCLRTEXVERTEX; + + typedef vector<LPDIRECT3DRESOURCE9> LPDIRECT3DRESOURCE9Vector; typedef vector<LPDIRECT3DVERTEXBUFFER9> LPDIRECT3DVERTEXBUFFER9Vector; //issue 135 iterator for vectors |