// d3dkmddi.h
typedef struct _DXGKARG_SETROOTPAGETABLE {
HANDLE hContext;
D3DGPU_PHYSICAL_ADDRESS Address;
UINT NumEntries;
} DXGKARG_SETROOTPAGETABLE;
View the official Windows Driver Kit DDI referenceNo description available.
DXGKARG_SETROOTPAGETABLE is used by the DxgkDdiSetRootPageTabledevice driver interface (DDI) to notify a context when its associated root page table is resized or moved in memory.
hContextA context handle returned by DxgkDdiCreateContext.
AddressThe GPU physical address of the root page table.
NumEntriesThe root page table size in entries. GPU should generate invalid fault when a virtual address has a top level page table entry index, which is greater or equal this value.