DXGK_PREEMPTCOMMANDFLAGS structure (d3dkmddi.h)
The DXGK_PREEMPTCOMMANDFLAGS structure specifies a union that contains either a structure with a reserved member or a 32-bit value. No bit-field flags are currently defined.
Syntax
typedef struct _DXGK_PREEMPTCOMMANDFLAGS {
union {
struct {
UINT Reserved : 32;
};
UINT Value;
};
} DXGK_PREEMPTCOMMANDFLAGS;
Members
Reserved
This member is reserved and should be set to zero. Setting this member to zero is equivalent to setting all 32 bits (0xFFFFFFFF) of the 32-bit Value member to zeros.
Value
A member in the union that DXGK_PREEMPTCOMMANDFLAGS contains that can hold a 32-bit value.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista |
Header | d3dkmddi.h (include D3dkmddi.h) |