// d3dkmddi.h
typedef struct _DXGK_PAGETABLEUPDATEADDRESS {
union {
PVOID CpuVirtual;
D3DGPU_PHYSICAL_ADDRESS GpuPhysical;
D3DGPU_VIRTUAL_ADDRESS GpuVirtual;
};
} DXGK_PAGETABLEUPDATEADDRESS;
View the official Windows Driver Kit DDI referenceNo description available.
DXGK_PAGETABLEUPDATEADDRESS contains the address of a page table to update. The member containing the address is defined as part of a DxgkDdiBuildPagingBuffer operation in the DXGK_BUILDPAGINGBUFFER_UPDATEPAGETABLE structure.
CpuVirtualThe CPU virtual address of the page table to update.
GpuPhysicalThe GPU physical address of the page table to update.
GpuVirtualThe GPU virtual address of the page table to update.
DXGK_BUILDPAGINGBUFFER_UPDATEPAGETABLE