-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request xbmc#26096 from thexai/Windows_24H2-HDR-toggle
[Windows] Add full support for HDR toggle in Windows 11 24H2
- Loading branch information
Showing
10 changed files
with
332 additions
and
357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ | |
|
||
enum class HDR_STATUS | ||
{ | ||
HDR_UNKNOWN = -2, | ||
HDR_TOGGLE_FAILED = -1, | ||
HDR_UNSUPPORTED = 0, | ||
HDR_OFF = 1, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Copyright (C) 2024 Team Kodi | ||
* This file is part of Kodi - https://kodi.tv | ||
* | ||
* SPDX-License-Identifier: GPL-2.0-or-later | ||
* See LICENSES/README.md for more information. | ||
*/ | ||
|
||
#pragma once | ||
|
||
enum | ||
{ | ||
DISPLAYCONFIG_DEVICE_INFO_SET_RESERVED1 = 14, | ||
DISPLAYCONFIG_DEVICE_INFO_GET_ADVANCED_COLOR_INFO_2 = 15, | ||
DISPLAYCONFIG_DEVICE_INFO_SET_HDR_STATE = 16, | ||
DISPLAYCONFIG_DEVICE_INFO_SET_WCG_STATE = 17, | ||
}; | ||
|
||
typedef enum _DISPLAYCONFIG_ADVANCED_COLOR_MODE | ||
{ | ||
DISPLAYCONFIG_ADVANCED_COLOR_MODE_SDR, | ||
DISPLAYCONFIG_ADVANCED_COLOR_MODE_WCG, | ||
DISPLAYCONFIG_ADVANCED_COLOR_MODE_HDR | ||
} DISPLAYCONFIG_ADVANCED_COLOR_MODE; | ||
|
||
typedef struct _DISPLAYCONFIG_GET_ADVANCED_COLOR_INFO_2 | ||
{ | ||
DISPLAYCONFIG_DEVICE_INFO_HEADER header; | ||
union | ||
{ | ||
struct | ||
{ | ||
UINT32 advancedColorSupported : 1; | ||
UINT32 advancedColorActive : 1; | ||
UINT32 reserved1 : 1; | ||
UINT32 advancedColorLimitedByPolicy : 1; | ||
UINT32 highDynamicRangeSupported : 1; | ||
UINT32 highDynamicRangeUserEnabled : 1; | ||
UINT32 wideColorSupported : 1; | ||
UINT32 wideColorUserEnabled : 1; | ||
UINT32 reserved : 24; | ||
}; | ||
UINT32 value; | ||
}; | ||
DISPLAYCONFIG_COLOR_ENCODING colorEncoding; | ||
UINT32 bitsPerColorChannel; | ||
DISPLAYCONFIG_ADVANCED_COLOR_MODE activeColorMode; | ||
} DISPLAYCONFIG_GET_ADVANCED_COLOR_INFO_2; | ||
|
||
typedef struct _DISPLAYCONFIG_SET_HDR_STATE | ||
{ | ||
DISPLAYCONFIG_DEVICE_INFO_HEADER header; | ||
union | ||
{ | ||
struct | ||
{ | ||
UINT32 enableHdr : 1; | ||
UINT32 reserved : 31; | ||
}; | ||
UINT32 value; | ||
}; | ||
} DISPLAYCONFIG_SET_HDR_STATE; |
Oops, something went wrong.