// d3dukmdt.h
typedef struct _D3DDDI_BUILDTESTCOMMANDBUFFERFLAGS {
union {
struct {
UINT HardwareQueue : 1;
UINT Reserved : 31;
};
UINT Value;
};
} D3DDDI_BUILDTESTCOMMANDBUFFERFLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
The D3DDDI_BUILDTESTCOMMANDBUFFERFLAGS structure specifies flags for DXGKDDI_BUILDTESTCOMMANDBUFFER to use when building a command buffer for kernel-mode testing.
HardwareQueueIndicates 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.
ReservedReserved for future use.
ValueCan be used to access the flags as a single value.
For more information, see Kernel-mode testing.
DXGKARG_BUILDTESTCOMMANDBUFFER