// d3dkmddi.h
typedef struct _DXGK_MULTIPLANE_OVERLAY_POST_COMPOSITION_FLAGS {
union {
struct {
UINT VerticalFlip : 1;
UINT HorizontalFlip : 1;
UINT Reserved : 30;
};
UINT Value;
};
} DXGK_MULTIPLANE_OVERLAY_POST_COMPOSITION_FLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
A structure containing the flags describing the transformations applied to an image.
VerticalFlipIndicates that the image should be flipped vertically.
HorizontalFlipIndicates that the image should be flipped horizontally.
ReservedThis member is reserved and should be set to zero. Setting this member to zero is equivalent to setting the remaining 30 bits (0xFFFFFFFC) of the 32-bit Value member to zeros.
ValueApplying VerticalFlip and HorizontalFlip simultaneously results in 180 degree rotation.