Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
A structure containing the flags describing the transformations applied to an image.
Syntax
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;
Members
VerticalFlip
Indicates that the image should be flipped vertically.
HorizontalFlip
Indicates that the image should be flipped horizontally.
Reserved
This 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.
Value
Remarks
Applying VerticalFlip and HorizontalFlip simultaneously results in 180 degree rotation.
Requirements
Requirement | Value |
---|---|
Header | d3dkmddi.h |