ddraw: d3d7 does not support two sided stencil.
The header is wrong. There is simply no API to set this. The MS header does not have this declaration either.
This commit is contained in:
parent
c6d3e75482
commit
c0892c2f35
|
@ -1324,7 +1324,7 @@ IDirect3DImpl_GetCaps(IWineD3D *WineD3D,
|
|||
Desc7->dwStencilCaps &= (
|
||||
D3DSTENCILCAPS_KEEP | D3DSTENCILCAPS_ZERO | D3DSTENCILCAPS_REPLACE |
|
||||
D3DSTENCILCAPS_INCRSAT | D3DSTENCILCAPS_DECRSAT | D3DSTENCILCAPS_INVERT |
|
||||
D3DSTENCILCAPS_INCR | D3DSTENCILCAPS_DECR | D3DSTENCILCAPS_TWOSIDED);
|
||||
D3DSTENCILCAPS_INCR | D3DSTENCILCAPS_DECR);
|
||||
|
||||
/* FVF caps ?*/
|
||||
|
||||
|
|
|
@ -311,7 +311,6 @@ typedef struct _D3DDeviceDesc7 {
|
|||
#define D3DSTENCILCAPS_INVERT 0x00000020
|
||||
#define D3DSTENCILCAPS_INCR 0x00000040
|
||||
#define D3DSTENCILCAPS_DECR 0x00000080
|
||||
#define D3DSTENCILCAPS_TWOSIDED 0x00000100
|
||||
|
||||
#define D3DTEXOPCAPS_DISABLE 0x00000001
|
||||
#define D3DTEXOPCAPS_SELECTARG1 0x00000002
|
||||
|
|
Loading…
Reference in New Issue