// d3dkmddi.h
typedef struct _DXGK_BUILDPAGINGBUFFER_COPY_RANGE {
UINT NumPageTableEntries;
D3DGPU_VIRTUAL_ADDRESS SrcPageTableAddress;
D3DGPU_VIRTUAL_ADDRESS DstPageTableAddress;
UINT SrcStartPteIndex;
UINT DstStartPteIndex;
} DXGK_BUILDPAGINGBUFFER_COPY_RANGE;
View the official Windows Driver Kit DDI referenceNo description available.
DXGK_BUILDPAGINGBUFFER_COPY_RANGE is used as part of a page table entry copy operation.
NumPageTableEntriesThe number of page table entries to copy.
SrcPageTableAddressThe virtual address of the source page table for the range. The address is aligned to 64KB boundary.
DstPageTableAddressThe virtual address of the destination page table for the range. The address is aligned to 64KB boundary.
SrcStartPteIndexThe index of the first page table entry in the source page table for the range.
DstStartPteIndexThe index of the first page table entry in the destination page table for the range.
DXGK_BUILDPAGINGBUFFER_COPYPAGETABLEENTRIES