DXGK_DEVICE_TYPE_CAPS - NtDoc

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

typedef struct _DXGK_DEVICE_TYPE_CAPS {
  union {
    struct {
      UINT32 Discrete : 1;
      UINT32 Detachable : 1;
      UINT32 Reserved : 30;
    };
    UINT32 Value;
  };
} DXGK_DEVICE_TYPE_CAPS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3dkmddi-_dxgk_device_type_caps)

_DXGK_DEVICE_TYPE_CAPS structure

Description

Describes the type of capabilities for a device.

Members

Discrete

The device is discrete.

Detachable

The device is detachable.

Reserved

Reserved.

Value

Remarks

See also