// d3dkmddi.h
typedef struct _DXGK_TRACKEDWORKLOAD_STATE_FLAGS {
union {
struct {
UINT Saturated : 1;
UINT OptimalLevel : 1;
UINT Reserved : 30;
};
UINT Value;
};
} DXGK_TRACKEDWORKLOAD_STATE_FLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
Indicates GPU configurations, including the appropriate frequencies and power level, for a context.
SaturatedThe driver should set this state flag if the driver cannot go higher than specified. This includes transient states like thermal limits.
OptimalLevelThe driver should set this flag if for the given power level, we are in an optimal efficiency range for the tracked workload. The driver should set this flag only when, for certain workloads, lowering the frequency will reduce the performance per watt.
ReservedThis value is reserved.
Value