Module: wine Branch: refs/heads/master Commit: 91a8e2a0710541d5f0b9ba733e13e9640e78c92e URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=91a8e2a0710541d5f0b9ba73...
Author: Stefan Dösinger stefandoesinger@gmx.at Date: Tue Apr 4 00:30:07 2006 +0200
wined3d: Add WINED3DCLIPSTATUS to wined3d_types.h.
---
include/wine/wined3d_interface.h | 2 -- include/wine/wined3d_types.h | 6 ++++++ 2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/include/wine/wined3d_interface.h b/include/wine/wined3d_interface.h index f64ff92..73fa410 100644 --- a/include/wine/wined3d_interface.h +++ b/include/wine/wined3d_interface.h @@ -149,14 +149,12 @@ DEFINE_GUID(IID_IWineD3DQuery, #if defined( __WINE_D3D8_H ) /* Identical: */ # define WINED3DLIGHT D3DLIGHT8 -# define WINED3DCLIPSTATUS D3DCLIPSTATUS8 # define WINED3DMATERIAL D3DMATERIAL8 # define WINED3DVIEWPORT D3DVIEWPORT8
#else /* Identical: */ # define WINED3DLIGHT D3DLIGHT9 -# define WINED3DCLIPSTATUS D3DCLIPSTATUS9 # define WINED3DMATERIAL D3DMATERIAL9 # define WINED3DVIEWPORT D3DVIEWPORT9
diff --git a/include/wine/wined3d_types.h b/include/wine/wined3d_types.h index da42bcb..60fa601 100644 --- a/include/wine/wined3d_types.h +++ b/include/wine/wined3d_types.h @@ -559,6 +559,12 @@ typedef struct _WINED3DVOLUME_DESC UINT *Depth; } WINED3DVOLUME_DESC;
+typedef struct _WINED3DCLIPSTATUS { + DWORD ClipUnion; + DWORD ClipIntersection; +} WINED3DCLIPSTATUS; + + typedef struct _WINED3DVERTEXELEMENT { WORD Stream; WORD Offset;