DKGK_GAMMA_DATA_CAP - NtDoc

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

typedef struct _DKGK_GAMMA_DATA_CAP {
  DXGK_GAMMA_DATA_TYPE DataType;
  union {
    struct {
      UINT BitCountOfInteger : 6;
      UINT BitCountOfFraction : 6;
    };
    struct {
      UINT BitCountOfExponent : 6;
      UINT BitCountOfMantissa : 6;
    };
    UINT Value;
  };
  float                NumericRangeMin;
  float                NumericRangeMax;
} DKGK_GAMMA_DATA_CAP;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

DKGK_GAMMA_DATA_CAP structure

Description

Gamma data caps.

Members

DataType

A DXGK_GAMMA_DATA_TYPE enumeration value.

BitCountOfInteger

Bit count of integer if DataType is fixed-point(DXGK_GAMMA_DATA_TYPE_FIXED_POINT).

BitCountOfFraction

Bit count of fraction if DataType is fixed-point(DXGK_GAMMA_DATA_TYPE_FIXED_POINT).

BitCountOfExponent

Bit count of exponent if the DataType is float(DXGK_GAMMA_DATA_TYPE_FLOAT).

BitCountOfMantissa

Bit count of mantissa if the DataType is float(DXGK_GAMMA_DATA_TYPE_FLOAT).

Value

NumericRangeMin

Minimum number of gamma data.

NumericRangeMax

Maximum number of gamma data.

Remarks

See also