Module: wine Branch: master Commit: 6e7a54f7952317b998d76fe9d7969a10e5f886b9 URL: https://gitlab.winehq.org/wine/wine/-/commit/6e7a54f7952317b998d76fe9d7969a1...
Author: Kacper Michajłow kasper93@gmail.com Date: Thu Feb 2 09:52:28 2023 +0100
include: Add some DXGI_COLOR_SPACE_TYPE enumeration values.
Signed-off-by: Kacper Michajłow kasper93@gmail.com
---
include/dxgicommon.idl | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/include/dxgicommon.idl b/include/dxgicommon.idl index 99ace03c37d..29c8f6af642 100644 --- a/include/dxgicommon.idl +++ b/include/dxgicommon.idl @@ -45,6 +45,11 @@ typedef enum DXGI_COLOR_SPACE_TYPE DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P2020 = 0x11, DXGI_COLOR_SPACE_YCBCR_STUDIO_GHLG_TOPLEFT_P2020 = 0x12, DXGI_COLOR_SPACE_YCBCR_FULL_GHLG_TOPLEFT_P2020 = 0x13, + DXGI_COLOR_SPACE_RGB_STUDIO_G24_NONE_P709 = 0x14, + DXGI_COLOR_SPACE_RGB_STUDIO_G24_NONE_P2020 = 0x15, + DXGI_COLOR_SPACE_YCBCR_STUDIO_G24_LEFT_P709 = 0x16, + DXGI_COLOR_SPACE_YCBCR_STUDIO_G24_LEFT_P2020 = 0x17, + DXGI_COLOR_SPACE_YCBCR_STUDIO_G24_TOPLEFT_P2020 = 0x18, DXGI_COLOR_SPACE_CUSTOM = 0xffffffff, } DXGI_COLOR_SPACE_TYPE;