// d3dkmddi.h typedef struct _DXGK_SEGMENTFLAGS2 { union { struct { UINT Aperture : 1; UINT PopulatedFromSystemMemory : 1; UINT SystemMemoryReservedByBios : 1; UINT CpuVisible : 1; UINT Reserved : 28; }; UINT Value; }; } DXGK_SEGMENTFLAGS2;View the official Windows Driver Kit DDI reference
No description available.
DXGK_SEGMENTFLAGS2 is reserved for system use. Don't use it in your driver.
Aperture
PopulatedFromSystemMemory
SystemMemoryReservedByBios
CpuVisible
Reserved
Value
View the official Windows Driver Kit DDI reference