DXGK_CONTEXTINFO_CAPS structure (d3dkmddi.h)
DXGK_CONTEXTINFO_CAPS is used to describe the capabilities supported by a driver.
Syntax
typedef struct _DXGK_CONTEXTINFO_CAPS {
union {
struct {
UINT NoPatchingRequired : 1;
UINT DriverManagesResidency : 1;
UINT UseIoMmu : 1;
UINT Reserved : 29;
};
UINT Value;
};
} DXGK_CONTEXTINFO_CAPS;
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.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 10 |
Minimum supported server | Windows Server 2016 |
Header | d3dkmddi.h (include D3dkmddi.h) |