DXGK_TRANSFERVIRTUALFLAGS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3dkmddi-_dxgk_transfervirtualflags)

_DXGK_TRANSFERVIRTUALFLAGS structure

Description

DXGK_TRANSFERVIRTUALFLAGS is used as part of an allocation transfer operation.

Members

Src64KBPages

When set, the source page tables are mapped to 64KB pages.

Dst64KBPages

When set, the destination page tables are mapped to 64KB pages.

Reserved

This member is reserved and should be set to zero.

Flags

The consolidated value of the structure flags.