D3D11_AUTHENTICATED_PROTECTION_FLAGS Structure

Specifies the protection level for video content.

Syntax

typedef union D3D11_AUTHENTICATED_PROTECTION_FLAGS {
    struct {
        UINT ProtectionEnabled : 1;
        UINT OverlayOrFullscreenRequired : 1;
        UINT Reserved : 30;
    }Flags;
    UINT Value;
} D3D11_AUTHENTICATED_PROTECTION_FLAGS;  

Members

Flags

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. Set all bits to zero.

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

Requirements

Header: Declared in d3d11_x.h (d3d11.h on other Windows platforms).