// ntddvdeo.h
typedef struct _COLORSPACE_TRANSFORM_MATRIX_V2 {
COLORSPACE_TRANSFORM_STAGE_CONTROL StageControlLookupTable1DDegamma;
GAMMA_RAMP_RGB LookupTable1DDegamma[4096];
COLORSPACE_TRANSFORM_STAGE_CONTROL StageControlColorMatrix3x3;
float ColorMatrix3x3[3][3];
COLORSPACE_TRANSFORM_STAGE_CONTROL StageControlLookupTable1DRegamma;
GAMMA_RAMP_RGB LookupTable1DRegamma[4096];
} COLORSPACE_TRANSFORM_MATRIX_V2, *PCOLORSPACE_TRANSFORM_MATRIX_V2;
View the official Windows Driver Kit DDI referenceNo description available.
The colorspace transform matrix structure.
StageControlLookupTable1DDegammaThe stage control LUT (lookup table) for 1D degamma.
LookupTable1DDegammaThe lookup table 1D degamma.
StageControlColorMatrix3x3The stage control color matrix.
ColorMatrix3x3The color matrix.
StageControlLookupTable1DRegammaThe stage control lookup table for 1D regamma.
LookupTable1DRegammaThe lookup table 1D regamma.