1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

include: Add some DXGI_COLOR_SPACE_TYPE enumeration values.

Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
This commit is contained in:
Kacper Michajłow 2023-02-02 09:52:28 +01:00 committed by Alexandre Julliard
parent e8777691c8
commit 6e7a54f795

View File

@ -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;