// dispmprt.h
DXGKDDI_GETVIRTUALGPUPROFILE DxgkddiGetvirtualgpuprofile;
NTSTATUS DxgkddiGetvirtualgpuprofile(
[in] HANDLE Context,
[in, out] DXGKARG_GETVIRTUALGPUPROFILE *pArgs
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Returns information about the vGPU profile, which is supported by the physical GPU when it is divided into given number of partitions. This function could be called multiple times to get current vGPU capabilities.
Context [in]The miniport context that is returned by the driver in the DXGKDDI_GPU_PARTITION_INTERFACE structure.
pArgs [in, out]A pointer to the DXGKARG_GETVIRTUALGPUPROFILE structure.
Return STATUS_SUCCESS if the operation succeeds.
//Declaration
DXGKDDI_GETVIRTUALGPUPROFILE DxgkddiGetvirtualgpuprofile;
// Definition
NTSTATUS DxgkddiGetvirtualgpuprofile
(
HANDLE Context
DXGKARG_GETVIRTUALGPUPROFILE * pArgs
)
{...}