include/d3d10.idl: Add flags in D3D10_CREATE_DEVICE_FLAG enum.

Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Biswapriyo Nath 2020-09-01 11:42:12 +05:30 committed by Alexandre Julliard
parent 5c15a6c1ec
commit 472b5ffc9a
1 changed files with 3 additions and 1 deletions

View File

@ -984,7 +984,9 @@ typedef enum D3D10_CREATE_DEVICE_FLAG {
D3D10_CREATE_DEVICE_PREVENT_INTERNAL_THREADING_OPTIMIZATIONS = 0x8,
D3D10_CREATE_DEVICE_ALLOW_NULL_FROM_MAP = 0x10,
D3D10_CREATE_DEVICE_BGRA_SUPPORT = 0x20,
D3D10_CREATE_DEVICE_STRICT_VALIDATION = 0x0200
D3D10_CREATE_DEVICE_PREVENT_ALTERING_LAYER_SETTINGS_FROM_REGISTRY = 0x80,
D3D10_CREATE_DEVICE_STRICT_VALIDATION = 0x200,
D3D10_CREATE_DEVICE_DEBUGGABLE = 0x400,
} D3D10_CREATE_DEVICE_FLAG;
/* Core */