// d3dkmddi.h
typedef struct _DXGK_TRANSFERVIRTUALFLAGS {
union {
struct {
UINT Src64KBPages : 1;
UINT Dst64KBPages : 1;
UINT Reserved : 30;
};
UINT Flags;
};
} DXGK_TRANSFERVIRTUALFLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
DXGK_TRANSFERVIRTUALFLAGS is used as part of an allocation transfer operation.
Src64KBPagesWhen set, the source page tables are mapped to 64KB pages.
Dst64KBPagesWhen set, the destination page tables are mapped to 64KB pages.
ReservedThis member is reserved and should be set to zero.
FlagsThe consolidated value of the structure flags.