// d3dkmddi.h
DXGKDDI_VIDPNSOURCEMODESET_PINMODE DxgkddiVidpnsourcemodesetPinmode;
NTSTATUS DxgkddiVidpnsourcemodesetPinmode(
[in] IN_D3DKMDT_HVIDPNSOURCEMODESET hVidPnSourceModeSet,
[in] IN_CONST_D3DKMDT_VIDEO_PRESENT_SOURCE_MODE_ID VidPnSourceModeId
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The pfnPinMode function pins a specified mode in a VidPN source mode set.
hVidPnSourceModeSet [in]A handle to a VidPN source mode set object. The display miniport driver previously obtained this handle by calling the pfnAcquireSourceModeSet function of the DXGK_VIDPN_INTERFACE interface.
VidPnSourceModeId [in]An integer that identifies the mode to be pinned.
The pfnPinMode function returns one of the following values:
| Return code | Description |
|---|---|
| STATUS_SUCCESS | The function succeeded. |
| STATUS_GRAPHICS_INVALID_VIDPN_SOURCEMODESET | The handle supplied in hVidPnSourceModeSet was invalid. |
| STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE | The mode identified by VidPnSourceModeId does not belong to the source mode set represented by hVidPnSourceModeSet. |
VidPN source mode identifiers are assigned by the operating system. The pfnCreateNewModeInfo function generates a mode identifier, assigns the identifier to the Id member of a D3DKMDT_VIDPN_SOURCE_MODE structure, and returns the structure to the display miniport driver.
The D3DKMDT_HVIDPNSOURCEMODESET data type is defined in D3dkmdt.h.