// dispmprt.h
DXGKDDI_SETVIRTUALGPURESOURCES DxgkddiSetvirtualgpuresources;
NTSTATUS DxgkddiSetvirtualgpuresources(
[in] HANDLE Context,
[in] DXGKARG_SETVIRTUALGPURESOURCES *pArgs
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
This function assigns physical resources capabilities to a virtual GPU. The function is called before setting the virtual GPU to the D0 state.
Context [in]The miniport context that is returned by the driver in the DXGKDDI_GPU_PARTITION_INTERFACE structure.
pArgs [in]A pointer to a DXGKARG_SETVIRTUALGPURESOURCES structure.
Return STATUS_SUCCESS if the operation succeeds.
//Declaration
DXGKDDI_SETVIRTUALGPURESOURCES DxgkddiSetvirtualgpuresources;
// Definition
NTSTATUS DxgkddiSetvirtualgpuresources
(
HANDLE Context
DXGKARG_SETVIRTUALGPURESOURCES * pArgs
)
{...}
Remapping of vGPUs is not currently supported.