// d3dkmddi.h
DXGKDDI_QUERYFEATURESUPPORT DxgkddiQueryfeaturesupport;
NTSTATUS DxgkddiQueryfeaturesupport(
IN_CONST_HANDLE hAdapter,
INOUT_PDXGKARG_QUERYFEATURESUPPORT pArgs
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
KMD's DxgkDdiQueryFeatureSupport function is called to query its support for a feature.
hAdapter[in] A handle to a context block associated with a display adapter. KMD previously provided this handle to Dxgkrnl in the MiniportDeviceContext output parameter of its DxgkDdiAddDevice function.
pArgs[in/out] Pointer to a DXGKARG_QUERYFEATURESUPPORT structure in which input and output feature support information is stored.
DxgkDdiQueryFeatureSupport returns STATUS_SUCCESS upon successful completion. Otherwise, it returns an appropriate NTSTATUS code.
For more information, see Querying WDDM feature support and enablement.