DXGK_MEMORY_TRANSFER_DIRECTION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// d3dkmddi.h

typedef enum _DXGK_MEMORY_TRANSFER_DIRECTION {
  DXGK_MEMORY_TRANSFER_LOCAL_TO_SYSTEM,
  DXGK_MEMORY_TRANSFER_SYSTEM_TO_LOCAL,
  DXGK_MEMORY_TRANSFER_LOCAL_TO_LOCAL
} DXGK_MEMORY_TRANSFER_DIRECTION;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-d3dkmddi-_dxgk_memory_transfer_direction)

_DXGK_MEMORY_TRANSFER_DIRECTION enumeration

Description

DXGK_MEMORY_TRANSFER_DIRECTION is used as part of an allocation transfer operation to specify the direction of the transfer.

Constants

DXGK_MEMORY_TRANSFER_LOCAL_TO_SYSTEM

Transfer from local GPU memory to system memory.

DXGK_MEMORY_TRANSFER_SYSTEM_TO_LOCAL

Transfer from system memory to local GPU memory.

DXGK_MEMORY_TRANSFER_LOCAL_TO_LOCAL

Transfer from local GPU memory to local GPU memory.