DXGK_MULTIPLANE_OVERLAY_POST_COMPOSITION_FLAGS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3dkmddi-_dxgk_multiplane_overlay_post_composition_flags)

_DXGK_MULTIPLANE_OVERLAY_POST_COMPOSITION_FLAGS structure

Description

A structure containing the flags describing the transformations applied to an image.

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.