// d3dkmddi.h
typedef struct _DXGKARG_UNMAPCPUHOSTAPERTURE {
UINT64 NumberOfPages;
UINT32 *pCpuHostAperturePages;
WORD SegmentId;
WORD PhysicalAdapterIndex;
} DXGKARG_UNMAPCPUHOSTAPERTURE;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGKARG_UNMAPCPUHOSTAPERTURE structure is used to unmap a previously mapped range of the CPU host aperture.
NumberOfPagesSpecifies the number of pages being unmapped.
pCpuHostAperturePagesArray of CPU host aperture pages to unmap. This is an array of page indices from the start of the CPU host aperture physical address.
SegmentIdThe driver segment identifier (starting from 1) of the segment for which the CPU host aperture is unmapped.
PhysicalAdapterIndexThe zero-based physical adapter index in a linked display adapter link.
Note The page size is equal to the segment page size.