DXGKDDI_SETGPUPARTITIONCOUNT - NtDoc

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

DXGKDDI_SETGPUPARTITIONCOUNT DxgkddiSetgpupartitioncount;

NTSTATUS DxgkddiSetgpupartitioncount(
  [in] HANDLE Context,
  [in] DXGKARG_SETGPUPARTITIONCOUNT *pArgs
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-dispmprt-dxgkddi_setgpupartitioncount)

DXGKDDI_SETGPUPARTITIONCOUNT callback function

Description

Sets the number of partitions the physical GPU should be divided into. The OS guarantees that at this point there are no existing vGPUs on the physical GPU.

Parameters

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_SETGPUPARTITIONCOUNT structure.

Return value

Return STATUS_SUCCESS if the operation succeeds.

Prototype

//Declaration

DXGKDDI_SETGPUPARTITIONCOUNT DxgkddiSetgpupartitioncount;

// Definition

NTSTATUS DxgkddiSetgpupartitioncount
(
    HANDLE Context
    DXGKARG_SETGPUPARTITIONCOUNT * pArgs
)
{...}

Remarks

See also