d3d: Fix the value of D3DFVF_POSITION_MASK.

oldstable
Henri Verbeet 2009-01-02 16:19:12 +01:00 committed by Alexandre Julliard
parent 3c14b3936f
commit d359a7813f
2 changed files with 2 additions and 2 deletions

View File

@ -128,7 +128,7 @@
#define MAX_DEVICE_IDENTIFIER_STRING 512
#define D3DFVF_RESERVED0 0x0001
#define D3DFVF_POSITION_MASK 0x000E
#define D3DFVF_POSITION_MASK 0x400E
#define D3DFVF_XYZ 0x0002
#define D3DFVF_XYZRHW 0x0004
#define D3DFVF_XYZB1 0x0006

View File

@ -889,7 +889,7 @@ const UINT WINED3DCLIPPLANE5 = (1 << 5);
/* FVF (Flexible Vertex Format) codes */
const UINT WINED3DFVF_RESERVED0 = 0x0001;
const UINT WINED3DFVF_POSITION_MASK = 0x000e;
const UINT WINED3DFVF_POSITION_MASK = 0x400e;
const UINT WINED3DFVF_XYZ = 0x0002;
const UINT WINED3DFVF_XYZRHW = 0x0004;
const UINT WINED3DFVF_XYZB1 = 0x0006;