// 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 referenceNo description available.
D3DKMT_ISFEATUREENABLED is a parameter for the D3DKMTIsFeatureEnabled function that queries whether a feature is enabled.
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.
For more information, see Querying WDDM feature support and enablement.