D3DKMT_ISFEATUREENABLED - NtDoc

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

typedef struct _D3DKMT_ISFEATUREENABLED {
  D3DKMT_HANDLE                hAdapter;
  DXGK_FEATURE_ID              FeatureId;
  DXGK_ISFEATUREENABLED_RESULT Result;
} D3DKMT_ISFEATUREENABLED;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3dkmthk-d3dkmt_isfeatureenabled)

Description

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

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.

See also

D3DKMTIsFeatureEnabled