D3DDDI_BUILDTESTCOMMANDBUFFERFLAGS structure (d3dukmdt.h)

The D3DDDI_BUILDTESTCOMMANDBUFFERFLAGS structure specifies flags for DXGKDDI_BUILDTESTCOMMANDBUFFER to use when building a command buffer for kernel-mode testing.

Syntax

typedef struct _D3DDDI_BUILDTESTCOMMANDBUFFERFLAGS {
  union {
    struct {
      UINT HardwareQueue : 1;
      UINT Reserved : 31;
    };
    UINT Value;
  };
} D3DDDI_BUILDTESTCOMMANDBUFFERFLAGS;

Members

HardwareQueue

Indicates the type of context handle in DXGKARG_BUILDTESTCOMMANDBUFFER::hContext. When HardwareQueue is 1, the context handle is a hardware queue handle. When HardwareQueue is 0, the context handle is a KMD context handle.

Reserved

Reserved for future use.

Value

Can be used to access the flags as a single value.

Remarks

For more information, see Kernel-mode testing.

Requirements

Requirement Value
Minimum supported client Windows 11, version 24H2 (WDDM 3.2)
Header d3dukmdt.h

See also

DXGKARG_BUILDTESTCOMMANDBUFFER

DxgkDdiCreateContext

DxgkDdiCreatehwqueue

pfnBuildTestCommandBuffer