// d3d10umddi.h
typedef struct D3DWDDM2_0DDI_CHECK_VIDEO_PROCESSOR_FORMAT_CONVERSION {
DXGI_FORMAT InputFormat;
D3DDDI_COLOR_SPACE_TYPE InputColorSpace;
DXGI_FORMAT OutputFormat;
D3DDDI_COLOR_SPACE_TYPE OutputColorSpace;
BOOL Supported;
} D3DWDDM2_0DDI_CHECK_VIDEO_PROCESSOR_FORMAT_CONVERSION;
View the official Windows Driver Kit DDI referenceNo description available.
D3DWDDM2_0DDI_CHECK_VIDEO_PROCESSOR_FORMAT_CONVERSION is used with CheckVideoProcessorFormatConversion to indicate whether the driver supports a specific format/color space conversion combination.
InputFormatIndicates the format of the video processor input.
InputColorSpaceIndicates the color space of the video processor input.
OutputFormatIndicates the format of the video processor output.
OutputColorSpaceIndicates the color space of the video processor output.
SupportedThe driver sets this to TRUE if the conversion between the input format/color space and the output format/color space is supported.
CheckVideoProcessorFormatConversion