D3D11_1DDI_AUTHENTICATED_PROTECTION_FLAGS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// d3d10umddi.h

typedef struct D3D11_1DDI_AUTHENTICATED_PROTECTION_FLAGS {
  union {
    struct {
      UINT ProtectionEnabled : 1;
      UINT OverlayOrFullscreenRequired : 1;
      UINT Reserved : 30;
    };
    UINT Value;
  };
} D3D11_1DDI_AUTHENTICATED_PROTECTION_FLAGS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3d10umddi-d3d11_1ddi_authenticated_protection_flags)

D3D11_1DDI_AUTHENTICATED_PROTECTION_FLAGS structure

Description

Specifies the protection level for video content.

Members

ProtectionEnabled

If 1, video content protection is enabled.

OverlayOrFullscreenRequired

If 1, the application requires video to be displayed using either a hardware overlay or full-screen exclusive mode.

Reserved

Reserved for system use. Set all bits to zero.

Value

Use this member to access all of the bits in the union.