DXGK_STANDARD_COLORIMETRY_FLAGS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// d3dkmddi.h

typedef union _DXGK_STANDARD_COLORIMETRY_FLAGS {
  struct {
    UINT BT2020YCC : 1;
    UINT BT2020RGB : 1;
    UINT ST2084 : 1;
    UINT Reserved : 29;
  };
  ULONG  Value;
} DXGK_STANDARD_COLORIMETRY_FLAGS, *PDXGK_STANDARD_COLORIMETRY_FLAGS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3dkmddi-_dxgk_standard_colorimetry_flags)

_DXGK_STANDARD_COLORIMETRY_FLAGS structure

Description

Flags describing standard colorimetry and related support.

Members

BT2020YCC

Flag which indicates device support for the color space defined by BT.2020 using a YCC signal format.

BT2020RGB

Flag which indicates device support for the color space defined by BT.2020 using an RGB signal format.

ST2084

Flag which indicates device support for the ST.2084 EOTF.

Reserved

This value is reserved for system use.

Value

The combined value that is operated on.