D3DKMT_ISFEATUREENABLED structure (d3dkmthk.h)

D3DKMT_ISFEATUREENABLED is a parameter for the D3DKMTIsFeatureEnabled function that queries whether a feature is enabled.

Syntax

typedef struct _D3DKMT_ISFEATUREENABLED {
  D3DKMT_HANDLE                hAdapter;
  DXGK_FEATURE_ID              FeatureId;
  DXGK_ISFEATUREENABLED_RESULT Result;
} D3DKMT_ISFEATUREENABLED;

Members

hAdapter

[in] The adapter for which to query the feature. If the feature is a global feature, this value must be NULL.

FeatureId

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

Result

[out] A DXGK_ISFEATUREENABLED_RESULT structure that contains the result of the query.

Remarks

For more information, see Querying WDDM feature support and enablement.

Requirements

Requirement Value
Minimum supported client Windows 11, version 24H2 (WDDM 3.2)
Header d3dkmthk.h

See also

D3DKMTIsFeatureEnabled