Module: wine Branch: refs/heads/master Commit: f9fc4b86c0be0322d9f2674fc3f3a86ac8d6c65c URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=f9fc4b86c0be0322d9f2674f...
Author: Vitaliy Margolen wine-patch@kievinfo.com Date: Tue May 16 07:30:15 2006 -0600
d3d: Add D3DDEVTYPE_NULLREF definition.
---
include/d3d9types.h | 1 + include/wine/wined3d_types.h | 1 + 2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/d3d9types.h b/include/d3d9types.h index 3c4b8a1..fc8b40d 100644 --- a/include/d3d9types.h +++ b/include/d3d9types.h @@ -740,6 +740,7 @@ typedef enum _D3DDEVTYPE { D3DDEVTYPE_HAL = 1, D3DDEVTYPE_REF = 2, D3DDEVTYPE_SW = 3, + D3DDEVTYPE_NULLREF = 4,
D3DDEVTYPE_FORCE_DWORD = 0xffffffff } D3DDEVTYPE; diff --git a/include/wine/wined3d_types.h b/include/wine/wined3d_types.h index b32ec37..9d6a6c4 100644 --- a/include/wine/wined3d_types.h +++ b/include/wine/wined3d_types.h @@ -116,6 +116,7 @@ typedef enum _WINED3DDEVTYPE { WINED3DDEVTYPE_HAL = 1, WINED3DDEVTYPE_REF = 2, WINED3DDEVTYPE_SW = 3, + WINED3DDEVTYPE_NULLREF = 4,
WINED3DDEVTYPE_FORCE_DWORD = 0xffffffff } WINED3DDEVTYPE;