DXGKARGCB_ISFEATUREENABLED - NtDoc

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

typedef struct _DXGKARGCB_ISFEATUREENABLED {
  HANDLE          DeviceHandle;
  DXGK_FEATURE_ID FeatureId;
  BOOLEAN         Enabled;
} DXGKARGCB_ISFEATUREENABLED;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

DXGKARGCB_ISFEATUREENABLED structure

Description

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

Members

DeviceHandle

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

FeatureId

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

Enabled

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

See also

DXGKCB_ISFEATUREENABLED