D3DKMT_CHECK_MULTIPLANE_OVERLAY_SUPPORT_RETURN_INFO structure (d3dkmthk.h)

The D3DKMT_CHECK_MULTIPLANE_OVERLAY_SUPPORT_RETURN_INFO structure is used to return multiplane overlay support failure information.

Syntax

typedef struct D3DKMT_CHECK_MULTIPLANE_OVERLAY_SUPPORT_RETURN_INFO {
  union {
    struct {
      UINT FailingPlane : 4;
      UINT TryAgain : 1;
      UINT Reserved : 27;
    };
    UINT Value;
  };
} D3DKMT_CHECK_MULTIPLANE_OVERLAY_SUPPORT_RETURN_INFO;

Members

FailingPlane

The 0 based index of the first plane that could not be supported.

TryAgain

The configuration is not supported due to a transition condition, which should shortly go away.

Reserved

Reserved for internal use.

Value

The value used to operate over the other members of this structure.

Requirements

Requirement Value
Header d3dkmthk.h

See also

D3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT2

D3DKMT_CHECKMULTIPLANEOVERLAYSUPPORT3