// d3dkmddi.h
DXGKDDI_CREATEHWQUEUE DxgkddiCreatehwqueue;
NTSTATUS DxgkddiCreatehwqueue(
IN_CONST_HANDLE hHwContext,
INOUT_PDXGKARG_CREATEHWQUEUE pCreateHwQueue
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Dxgkrnl calls DxgkDdiCreateHwQueue to have the kernel-mode display driver (KMD) perform the work to create a hardware queue.
hHwContext[in] The hardware context handle that the hardware queue belongs to.
pCreateHwQueue[in/out] A pointer to a DXGKARG_CREATEHWQUEUE structure that describes the hardware queue to create.
DxgkDdiCreateHwQueue returns STATUS_SUCCESS if KMD was able to successfully create a hardware queue. Otherwise, it returns an appropriate NTSTATUS error code.
DxgkDdiCreateHwQueue's WDDM synchronization class is Zero level.