PFND3DDDI_DESTROYPAGINGQUEUECB - NtDoc

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

PFND3DDDI_DESTROYPAGINGQUEUECB Pfnd3dddiDestroypagingqueuecb;

HRESULT Pfnd3dddiDestroypagingqueuecb(
  HANDLE hDevice,
  const D3DDDI_DESTROYPAGINGQUEUE *unnamedParam2
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-d3dumddi-pfnd3dddi_destroypagingqueuecb)

PFND3DDDI_DESTROYPAGINGQUEUECB callback function

Description

pfnDestroyPagingQueueCb waits for a paging queue to finish all operations queued to it and destroys it along with the associated sync object.

Parameters

hDevice

A handle to the display device.

unnamedParam2

pData [in]

A pointer to a D3DDDI_DESTROYPAGINGQUEUE structure that describes the operation to perform.

Return value

If this callback function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.

Remarks

In addition to hPagingQueue, this device driver interface (DDI) invalidates hSyncObject and FenceValueCPUVirtualAddress values returned from pfnCreatePagingQueueCb.

See also

D3DDDI_DESTROYPAGINGQUEUE

pfnCreatePagingQueueCb