PFND3D12DDI_MAKERESIDENT_CB - NtDoc

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

PFND3D12DDI_MAKERESIDENT_CB Pfnd3d12ddiMakeresidentCb;

HRESULT Pfnd3d12ddiMakeresidentCb(
  D3D12DDI_HRTDEVICE hRTDevice,
  D3D12DDI_HRTPAGINGQUEUE hRTPagingQueue,
  D3DDDI_MAKERESIDENT *unnamedParam3
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-d3d12umddi-pfnd3d12ddi_makeresident_cb)

PFND3D12DDI_MAKERESIDENT_CB callback function

Description

pfnMakeResidentCb is used to instruct the OS to add a resource to the device residency list and increment the residency reference count on this allocation.

Parameters

hRTDevice

A handle to the display device to be handled in the runtime.

hRTPagingQueue

A handle to the paging queue to be handled in the runtime.

unnamedParam3

Pointer to a D3DDDI_MAKERESIDENT structure.

Return value

Returns HRESULT.

Prototype

//Declaration

PFND3D12DDI_MAKERESIDENT_CB Pfnd3d12ddiMakeresidentCb;

// Definition

HRESULT Pfnd3d12ddiMakeresidentCb
(
    D3D12DDI_HRTDEVICE hRTDevice
    D3D12DDI_HRTPAGINGQUEUE hRTPagingQueue
    D3DDDI_MAKERESIDENT *
)
{...}