DXGK_ADL_FLAGS - NtDoc

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

typedef struct _DXGK_ADL_FLAGS {
  union {
    struct {
      UINT32 Contiguous : 1;
      UINT32 Reserved : 31;
    };
    UINT32 Value;
  };
} DXGK_ADL_FLAGS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

The DXGK_ADL_FLAGS structure specifies the flag(s) that apply to an address descriptor list (ADL).

Members

Contiguous

Indicates that the pages in the ADL are contiguous.

Reserved

Reserved for future use.

Value

Another method to access the bits.

See also

DXGK_ADL