DXGK_DEVICEINFOFLAGS structure (d3dkmddi.h)

The DXGK_DEVICEINFOFLAGS structure identifies, in bit-field flags, information about a graphics device.

Syntax

typedef struct _DXGK_DEVICEINFOFLAGS {
  union {
    struct {
      UINT GuaranteedDmaBufferContract : 1;
      UINT Reserved : 31;
    };
    [out] UINT Value;
  };
} DXGK_DEVICEINFOFLAGS;

Members

[out] GuaranteedDmaBufferContract

Obsolete. A UINT value that specifies whether the device that is created through a call to DxgkDdiCreateDevice uses the guaranteed contract model for direct memory access (DMA) buffers. For more information about the guaranteed contract model, see Using the Guaranteed Contract DMA Buffer Model. If this member is set, the device uses the guaranteed contract model; if this member is not set, the device does not use the guaranteed contract model. The display driver model for Windows Vista currently supports only the guaranteed contract DMA buffer model.

Setting this member is equivalent to setting the first bit of the 32-bit Value member (0x00000001).

[out] Reserved

This member is reserved and should be set to zero. Setting this member to zero is equivalent to setting remaining 31 bits (0xFFFFFFFE) of the 32-bit Value member to zeros.

[out] Value

A member in the union that DXGK_DEVICEINFOFLAGS contains that can hold a 32-bit value that indicates information about a graphics device.

Requirements

Requirement Value
Minimum supported client Windows Vista
Header d3dkmddi.h (include D3dkmddi.h)

See also

DXGK_DEVICEINFO

DxgkDdiCreateDevice