// d3dkmthk.h
typedef union _D3DKMT_TRIMPROCESSCOMMITMENT_FLAGS {
struct {
UINT Lazy : 1;
UINT OnlyRepurposed : 1;
UINT Reserved : 30;
};
UINT Value;
} D3DKMT_TRIMPROCESSCOMMITMENT_FLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
Flags used during trim process commitment.
LazyThe trim process commitment is Lazy.
OnlyRepurposedThe trim process commitment is only repurposed.
ReservedReserved for internal use.
ValueThe value used to operate over the other members.