DXGK_CONTEXTINFO_CAPS - NtDoc

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

typedef struct _DXGK_CONTEXTINFO_CAPS {
  union {
    struct {
      UINT NoPatchingRequired : 1;
      UINT DriverManagesResidency : 1;
      UINT UseIoMmu : 1;
      UINT Reserved : 29;
    };
    UINT Value;
  };
} DXGK_CONTEXTINFO_CAPS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

_DXGK_CONTEXTINFO_CAPS structure

Description

DXGK_CONTEXTINFO_CAPS is used to describe the capabilities supported by a driver.

Members

NoPatchingRequired

Indicates that no memory patching is required.

DriverManagesResidency

Indicates that the driver manages memory residency.

UseIoMmu

Indicates that the driver supports IoMmu.

Reserved

This field is reserved and should not be used.

Value

The consolidated value of the structure.