// 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 referenceNo description available.
Gamma data caps.
DataTypeA DXGK_GAMMA_DATA_TYPE enumeration value.
BitCountOfIntegerBit count of integer if DataType is fixed-point(DXGK_GAMMA_DATA_TYPE_FIXED_POINT).
BitCountOfFractionBit count of fraction if DataType is fixed-point(DXGK_GAMMA_DATA_TYPE_FIXED_POINT).
BitCountOfExponentBit count of exponent if the DataType is float(DXGK_GAMMA_DATA_TYPE_FLOAT).
BitCountOfMantissaBit count of mantissa if the DataType is float(DXGK_GAMMA_DATA_TYPE_FLOAT).
ValueNumericRangeMinMinimum number of gamma data.
NumericRangeMaxMaximum number of gamma data.