// d3dkmthk.h
typedef union _D3DKMT_PROCESS_VERIFIER_VIDMM_FLAGS {
struct {
UINT ForceSynchronousEvict : 1;
UINT NeverDeferEvictions : 1;
UINT AlwaysFailCommitOnReclaim : 1;
UINT AlwaysPlaceInDemotedLocation : 1;
UINT IgnoreBudgetCap : 1;
UINT Reserved : 27;
};
UINT32 Value;
} D3DKMT_PROCESS_VERIFIER_VIDMM_FLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
The process verifier video memory management flags.
ForceSynchronousEvictIndicates whether to force synchronous eviction.
NeverDeferEvictionsFlag to never defer evictions.
AlwaysFailCommitOnReclaimFlag to always fail commit on reclaim.
AlwaysPlaceInDemotedLocationFlag to always place in a demoted location.
ReservedReserved for internal use.
ValueThe value used to operate over the other members.