// d3dumddi.h
PFND3DDDI_DESTROYPAGINGQUEUECB Pfnd3dddiDestroypagingqueuecb;
HRESULT Pfnd3dddiDestroypagingqueuecb(
HANDLE hDevice,
const D3DDDI_DESTROYPAGINGQUEUE *unnamedParam2
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
pfnDestroyPagingQueueCb waits for a paging queue to finish all operations queued to it and destroys it along with the associated sync object.
hDeviceA handle to the display device.
unnamedParam2pData [in]
A pointer to a D3DDDI_DESTROYPAGINGQUEUE structure that describes the operation to perform.
If this callback function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
In addition to hPagingQueue, this device driver interface (DDI) invalidates hSyncObject and FenceValueCPUVirtualAddress values returned from pfnCreatePagingQueueCb.