DXGKARGCB_ISFEATUREENABLED structure (d3dkmddi.h)

The DXGKARGCB_ISFEATUREENABLED structure contains the arguments used in the DXGKCB_ISFEATUREENABLED callback function, to query a driver feature's enabled state.

Syntax

typedef struct _DXGKARGCB_ISFEATUREENABLED {
  [in]  HANDLE          DeviceHandle;
  [in]  DXGK_FEATURE_ID FeatureId;
  [out] BOOLEAN         Enabled;
} DXGKARGCB_ISFEATUREENABLED;

Members

[in] DeviceHandle

Device handle that was passed to the driver's DxgkDdiStartDevice function.

[in] FeatureId

A DXGK_FEATURE_ID value that identifies the feature to query enabled state for.

[out] Enabled

FALSE if the OS instructs the driver not to enable the feature. TRUE if the OS allows the driver to enable the feature.

Requirements

Requirement Value
Minimum supported client Windows 10, version 1903 (WDDM 2.6)
Header d3dkmddi.h

See also

DXGKCB_ISFEATUREENABLED