// d3dukmdt.h
typedef struct _D3DKMDT_COLORSPACE_TRANSFORM_MATRIX_V2 {
D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL StageControlLookupTable1DDegamma;
D3DDDI_DXGI_RGB LookupTable1DDegamma[4096];
D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL StageControlColorMatrix3x3;
float ColorMatrix3x3[3][3];
D3DKMDT_COLORSPACE_TRANSFORM_STAGE_CONTROL StageControlLookupTable1DRegamma;
D3DDDI_DXGI_RGB LookupTable1DRegamma[4096];
} D3DKMDT_COLORSPACE_TRANSFORM_MATRIX_V2, *PD3DKMDT_COLORSPACE_TRANSFORM_MATRIX_V2;
View the official Windows Driver Kit DDI referenceNo description available.
Structure to describe the 3 by 4 matrix color space transform.
StageControlLookupTable1DDegammaStage control of lookup table 1D degamma.
LookupTable1DDegammaThe lookup table 1D degamma.
StageControlColorMatrix3x3Stage control of a 3x3 matrix.
ColorMatrix3x3The color 3x3 matrix.
StageControlLookupTable1DRegammaStage control of lookup table 1D regamma.
LookupTable1DRegammaThe lookup table 1D regamma.