DXGKDDI_CREATEHWQUEUE - NtDoc

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

DXGKDDI_CREATEHWQUEUE DxgkddiCreatehwqueue;

NTSTATUS DxgkddiCreatehwqueue(
  IN_CONST_HANDLE hHwContext,
  INOUT_PDXGKARG_CREATEHWQUEUE pCreateHwQueue
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-d3dkmddi-dxgkddi_createhwqueue)

Description

Dxgkrnl calls DxgkDdiCreateHwQueue to have the kernel-mode display driver (KMD) perform the work to create a hardware queue.

Parameters

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.

Return value

DxgkDdiCreateHwQueue returns STATUS_SUCCESS if KMD was able to successfully create a hardware queue. Otherwise, it returns an appropriate NTSTATUS error code.

Remarks

DxgkDdiCreateHwQueue's WDDM synchronization class is Zero level.

See also

DXGKARG_CREATEHWQUEUE

DxgkDestroyHwQueue