DXGK_TRANSFERVIRTUALFLAGS structure (d3dkmddi.h)

DXGK_TRANSFERVIRTUALFLAGS is used as part of an allocation transfer operation.

Syntax

typedef struct _DXGK_TRANSFERVIRTUALFLAGS {
  union {
    struct {
      UINT Src64KBPages : 1;
      UINT Dst64KBPages : 1;
      UINT Reserved : 30;
    };
    UINT Flags;
  };
} DXGK_TRANSFERVIRTUALFLAGS;

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.

Requirements

Requirement Value
Minimum supported client Windows 10
Minimum supported server Windows Server 2016
Header d3dkmddi.h (include D3dkmddi.h)