// d3dkmddi.h
typedef struct _DXGK_UPDATEPAGETABLEFLAGS {
UINT Repeat : 1;
UINT InitialUpdate : 1;
UINT NotifyEviction : 1;
UINT Use64KBPages : 1;
UINT NativeFence : 1;
#if ...
UINT Reserved : 27;
#else
UINT Reserved : 28;
#endif
} DXGK_UPDATEPAGETABLEFLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
DXGK_UPDATEPAGETABLEFLAGS is used as part of a page table update operation.
RepeatWhen set to TRUE, page table entries will point to a single page table entry value that needs to be replicated to all page table entries being updated.
InitialUpdateIndicates that the page table is initialized very first time after being made resident in memory.
NotifyEvictionIndicates that the page table is about to be evicted.
Use64KBPagesIndicates that page table entries point to page tables pointing to 64 KB pages.
ReservedThis member is reserved and should be set to zero.