// ntddvdeo.h
typedef struct _COLORSPACE_TRANSFORM_MATRIX_CAP {
union {
struct {
ULONG MatrixSizeX : 10;
ULONG MatrixSizeY : 10;
};
ULONG Value;
};
COLORSPACE_TRANSFORM_DATA_CAP DataCap;
} COLORSPACE_TRANSFORM_MATRIX_CAP, *PCOLORSPACE_TRANSFORM_MATRIX_CAP;
View the official Windows Driver Kit DDI referenceNo description available.
The colorspace transform matrix capabilities.
MatrixSizeXThe x-dimension of the matrix.
MatrixSizeYThe y-dimension of the matrix.
ValueDataCapData capabilities.