DXGKDDI_DESTROYHWQUEUE - NtDoc

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

DXGKDDI_DESTROYHWQUEUE DxgkddiDestroyhwqueue;

NTSTATUS DxgkddiDestroyhwqueue(
  IN_CONST_HANDLE hHwQueue
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

Dxgkrnel calls DxgkDdiDestroyHwQueue to have the kernel-mode display driver (KMD) perform the work to destroy a hardware queue.

Parameters

hHwQueue

[in] Handle to the queue to be destroyed.

Return value

DxgkDdiDestroyHwQueue returns STATUS_SUCCESS if KMD was able to successfully destroy the hardware queue. Otherwise, it returns an appropriate NTSTATUS error code.

Remarks

DxgkDdiDestroyHwQueue's WDDM synchronization class is Zero level.

See also

DxgkDdiCreateHwQueue