// d3dkmdt.h
typedef struct _DXGK_BRIGHTNESS_GET_NIT_RANGES_OUT {
UINT32 NormalRangeCount;
UINT32 RangeCount;
UINT32 PreferredMaximumBrightness;
DXGK_BRIGHTNESS_NIT_RANGE SupportedRanges[DXGK_BRIGHTNESS_MAXIMUM_NIT_RANGE_COUNT];
} DXGK_BRIGHTNESS_GET_NIT_RANGES_OUT, *PDXGK_BRIGHTNESS_GET_NIT_RANGES_OUT;
View the official Windows Driver Kit DDI referenceNo description available.
Contains the output parameters for the DxgkBrightnessGetNitRanges callback function.
NormalRangeCountThe number of ranges that are not boost level ranges.
RangeCountThe number of supported ranges, including boost level ranges.
PreferredMaximumBrightnessAn OEM-preferred level to correspond with 100% brightness. If there is no OEM preference, the value should be zero.
SupportedRangesA list of supported ranges. Ranges should be in strictly increasing order by brightness, with normal ranges coming before boost ranges.