// d3dkmddi.h
typedef enum _DXGK_PAGETABLEUPDATEMODE {
DXGK_PAGETABLEUPDATE_CPU_VIRTUAL,
DXGK_PAGETABLEUPDATE_GPU_VIRTUAL,
DXGK_PAGETABLEUPDATE_GPU_PHYSICAL
} DXGK_PAGETABLEUPDATEMODE;
View the official Windows Driver Kit DDI referenceNo description available.
DXGK_PAGETABLEUPDATEMODE is used as part of a DxgkDdiBuildPagingBuffer operation to indicate which member of the related DXGK_PAGETABLEUPDATEADDRESS structure contains the address of the page table to update.
DXGK_PAGETABLEUPDATE_CPU_VIRTUALIndicates that the address of the page table to update is in the CpuVirtual member of the DXGK_PAGETABLEUPDATEADDRESS structure.
DXGK_PAGETABLEUPDATE_GPU_VIRTUALIndicates that the address of the page table to update is in the GpuVirtual member of the DXGK_PAGETABLEUPDATEADDRESS structure.
DXGK_PAGETABLEUPDATE_GPU_PHYSICALIndicates that the address of the page table to update is in the GpuPhysical member of the DXGK_PAGETABLEUPDATEADDRESS structure.