// d3dkmddi.h
DXGKDDI_DESTROYHWQUEUE DxgkddiDestroyhwqueue;
NTSTATUS DxgkddiDestroyhwqueue(
IN_CONST_HANDLE hHwQueue
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Dxgkrnel calls DxgkDdiDestroyHwQueue to have the kernel-mode display driver (KMD) perform the work to destroy a hardware queue.
hHwQueue[in] Handle to the queue to be destroyed.
DxgkDdiDestroyHwQueue returns STATUS_SUCCESS if KMD was able to successfully destroy the hardware queue. Otherwise, it returns an appropriate NTSTATUS error code.
DxgkDdiDestroyHwQueue's WDDM synchronization class is Zero level.