wined3d: Fix a usage flags conflict.

Both WINED3DUSAGE_OVERLAY and WINED3DUSAGE_QUERY_SRGBBLEND were using
the same value. All usage flags except for OVERLAY are directly mapped
to d3d9, so give OVERLAY its own value.
This commit is contained in:
Roderick Colenbrander 2008-06-22 20:53:36 +00:00 committed by Alexandre Julliard
parent 5cc5d8a070
commit 2b2a5d7fbc
1 changed files with 1 additions and 1 deletions

View File

@ -1334,7 +1334,7 @@ typedef enum {
#define WINED3DUSAGE_AUTOGENMIPMAP 0x00000400L
#define WINED3DUSAGE_DMAP 0x00004000L
#define WINED3DUSAGE_MASK 0x00004FFFL
#define WINED3DUSAGE_OVERLAY 0x00010000L
#define WINED3DUSAGE_OVERLAY 0x80000000L
#define WINED3DUSAGE_QUERY_LEGACYBUMPMAP 0x00008000L
#define WINED3DUSAGE_QUERY_FILTER 0x00020000L