Module: wine Branch: master Commit: 31085cc3e91dabbc69f1c5acb7129fc525ba3f66 URL: https://source.winehq.org/git/wine.git/?a=commit;h=31085cc3e91dabbc69f1c5acb...
Author: Steve Lhomme robux4@gmail.com Date: Tue Dec 17 11:51:34 2019 +0100
include: Add D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT_OUTPUT.
Signed-off-by: Steve Lhomme robux4@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/d3d11.idl | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/include/d3d11.idl b/include/d3d11.idl index 78b4f33467..9ecb3af091 100644 --- a/include/d3d11.idl +++ b/include/d3d11.idl @@ -3793,6 +3793,12 @@ typedef enum D3D11_CREATE_DEVICE_FLAG { D3D11_CREATE_DEVICE_VIDEO_SUPPORT = 0x0800 } D3D11_CREATE_DEVICE_FLAG;
+typedef enum D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT +{ + D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT_INPUT = 0x0001, + D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT_OUTPUT = 0x0002, +} D3D11_VIDEO_PROCESSOR_FORMAT_SUPPORT; + const UINT D3D11_SDK_VERSION = 7;
cpp_quote("#include <d3d10_1.h>")