// d3d12umddi.h
PFND3D12DDI_MAKERESIDENT_CB Pfnd3d12ddiMakeresidentCb;
HRESULT Pfnd3d12ddiMakeresidentCb(
D3D12DDI_HRTDEVICE hRTDevice,
D3D12DDI_HRTPAGINGQUEUE hRTPagingQueue,
D3DDDI_MAKERESIDENT *unnamedParam3
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
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.
hRTDeviceA handle to the display device to be handled in the runtime.
hRTPagingQueueA handle to the paging queue to be handled in the runtime.
unnamedParam3Pointer to a D3DDDI_MAKERESIDENT structure.
Returns HRESULT.
//Declaration
PFND3D12DDI_MAKERESIDENT_CB Pfnd3d12ddiMakeresidentCb;
// Definition
HRESULT Pfnd3d12ddiMakeresidentCb
(
D3D12DDI_HRTDEVICE hRTDevice
D3D12DDI_HRTPAGINGQUEUE hRTPagingQueue
D3DDDI_MAKERESIDENT *
)
{...}