From d359a7813fe3d7acd8d3791fe63a4e44bb22ebb2 Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Fri, 2 Jan 2009 16:19:12 +0100 Subject: [PATCH] d3d: Fix the value of D3DFVF_POSITION_MASK. --- include/d3d9types.h | 2 +- include/wine/wined3d.idl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/d3d9types.h b/include/d3d9types.h index 61e321c2e95..d0ac9b42bd8 100644 --- a/include/d3d9types.h +++ b/include/d3d9types.h @@ -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 diff --git a/include/wine/wined3d.idl b/include/wine/wined3d.idl index ae648885da4..422673e68a4 100644 --- a/include/wine/wined3d.idl +++ b/include/wine/wined3d.idl @@ -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;