DXGK_MONITORLINKINFO_USAGEHINTS union (d3dkmdt.h)

The DXGK_MONITORLINKINFO_USAGEHINTS structure provides hints to the driver on the intended usage of the display device (monitor).

Syntax

typedef union _DXGK_MONITORLINKINFO_USAGEHINTS {
  struct {
    UINT Hidden : 1;
    UINT HeadMounted : 1;
    UINT Reserved : 30;
  };
  UINT   Value;
} DXGK_MONITORLINKINFO_USAGEHINTS, *PDXGK_MONITORLINKINFO_USAGEHINTS;

Members

Hidden

When set, DxgKrnl will hide this display from Win32 so it cannot be a part of the desktop.

HeadMounted

When set, the monitor is part of a head-mounted display (HMD) device.

Reserved

This value is reserved for system use.

Value

The collective value of the flags as a single value.

Requirements

Requirement Value
Header d3dkmdt.h (include D3dkmddi.h)