Module: wine Branch: master Commit: 472b5ffc9a051860a873e085d8f935a3d94a9979 URL: https://source.winehq.org/git/wine.git/?a=commit;h=472b5ffc9a051860a873e085d...
Author: Biswapriyo Nath nathbappai@gmail.com Date: Tue Sep 1 12:00:12 2020 +0530
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
---
include/d3d10.idl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/include/d3d10.idl b/include/d3d10.idl index 4a94034a7c..146332ac1c 100644 --- a/include/d3d10.idl +++ b/include/d3d10.idl @@ -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 */