// d3dkmthk.h
typedef struct _D3DKMT_MULTIPLANE_OVERLAY_POST_COMPOSITION_FLAGS {
union {
struct {
UINT VerticalFlip : 1;
UINT HorizontalFlip : 1;
UINT Reserved : 30;
};
UINT Value;
};
} D3DKMT_MULTIPLANE_OVERLAY_POST_COMPOSITION_FLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
Multiplane overlay post composition flags.
VerticalFlipThe overlay plane should flip the data vertically.
HorizontalFlipThe overlay plane should flip the data horizontally.
ReservedReserved for internal use.
ValueThe value used to operate over the other members.