aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorXavier Bouchoux <[email protected]>2014-12-08 23:28:28 +0100
committerEmil Velikov <[email protected]>2015-01-22 23:41:07 +0000
commit15ef84ccfb36ca294c6e4859481ce979d2a73a28 (patch)
tree6fb6afb1e05e04fed0d62955beb0b5868663d022 /include
parent44ee59d300e21d667d516baa637754c37803a414 (diff)
st/nine: Add missing c++ declaration for IDirect3DVolumeTexture9
Reviewed-by: Ilia Mirkin <[email protected]> Reviewed-by: David Heidelberg <[email protected]> Reviewed-by: Axel Davy <[email protected]> Signed-off-by: Xavier Bouchoux <[email protected]> Cc: "10.4" <[email protected]> (cherry picked from commit 072e2ba8e18e62fdaae4780b68b93a956931f4a2)
Diffstat (limited to 'include')
-rw-r--r--include/D3D9/d3d9.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/D3D9/d3d9.h b/include/D3D9/d3d9.h
index f872be79b9e..e8b5214fd0c 100644
--- a/include/D3D9/d3d9.h
+++ b/include/D3D9/d3d9.h
@@ -399,6 +399,16 @@ struct IDirect3DVolume9 : public IUnknown
virtual HRESULT WINAPI UnlockBox() = 0;
};
+struct IDirect3DVolumeTexture9 : public IDirect3DBaseTexture9
+{
+ virtual HRESULT WINAPI GetLevelDesc(UINT Level, D3DVOLUME_DESC *pDesc) = 0;
+ virtual HRESULT WINAPI GetVolumeLevel(UINT Level, IDirect3DVolume9 **ppVolumeLevel) = 0;
+ virtual HRESULT WINAPI LockBox(UINT Level, D3DLOCKED_BOX *pLockedVolume, const D3DBOX *pBox, DWORD Flags) = 0;
+ virtual HRESULT WINAPI UnlockBox(UINT Level) = 0;
+ virtual HRESULT WINAPI AddDirtyBox(const D3DBOX *pDirtyBox) = 0;
+};
+
+
#else /* __cplusplus */
extern const GUID IID_IDirect3D9;