DXGKDDI_QUERYVIDPNHWCAPABILITY - NtDoc

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

DXGKDDI_QUERYVIDPNHWCAPABILITY DxgkddiQueryvidpnhwcapability;

NTSTATUS DxgkddiQueryvidpnhwcapability(
  [in]     IN_CONST_HANDLE i_hAdapter,
  [in/out] INOUT_PDXGKARG_QUERYVIDPNHWCAPABILITY io_pVidPnHWCaps
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-d3dkmddi-dxgkddi_queryvidpnhwcapability)

DXGKDDI_QUERYVIDPNHWCAPABILITY callback function

Description

The DxgkDdiQueryVidPnHWCapability function requests that the display miniport driver report the capabilities of the hardware on a functional VidPn path.

Parameters

i_hAdapter [in]

A handle to a context block associated with a display adapter. The display miniport driver previously provided this handle to the DirectX graphics kernel subsystem in the MiniportDeviceContext output parameter of the DxgkDdiAddDevice function.

io_pVidPnHWCaps [in/out]

A pointer to a DXGKARG_QUERYVIDPNHWCAPABILITY structure that describes the hardware capabilities of a functional VidPN.

Return value

DxgkDdiQueryVidPnHwCapability returns STATUS_SUCCESS if it succeeds; otherwise, it returns one of the error codes defined in Ntstatus.h.

Remarks

For more information on how to process this function, see Querying VidPN Hardware Capabilities.

DxgkDdiQueryInterface should be made pageable.

See also

DXGKARG_QUERYVIDPNHWCAPABILITY