// d3dkmddi.h
typedef struct _DXGKARGCB_UNMAP_PHYSICAL_MEMORY {
HANDLE hPhysicalMemoryObject;
void *pBaseAddress;
SIZE_T Size;
} DXGKARGCB_UNMAP_PHYSICAL_MEMORY;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGKARGCB_UNMAP_PHYSICAL_MEMORY structure contains information about the physical memory object from which the CPU-visible address is being unmapped by the DXGKCB_UNMAPPHYSICALMEMORY callback function.
hPhysicalMemoryObjectThe physical memory object from which the CPU-visible address is being unmapped.
pBaseAddressThe base address returned from DXGKCB_MAPPHYSICALMEMORY that is being unmapped.
SizeThe size, in bytes, of the mapped region. This should match the mapped Size parameter that was output from the corresponding map call.
See IOMMU DMA remapping for more information.