DXGK_MONITORLINKINFO_USAGEHINTS - NtDoc

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

typedef union _DXGK_MONITORLINKINFO_USAGEHINTS {
  struct {
    UINT Hidden : 1;
    UINT HeadMounted : 1;
    UINT Reserved : 30;
  };
  UINT   Value;
} DXGK_MONITORLINKINFO_USAGEHINTS, *PDXGK_MONITORLINKINFO_USAGEHINTS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3dkmdt-_dxgk_monitorlinkinfo_usagehints)

DXGK_MONITORLINKINFO_USAGEHINTS structure

Description

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

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.