Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/GameTechDev/PresentMon
/ GetMin
Method
GetMin
IntelPresentMon/Core/source/pmon/StatisticsTracker.cpp:43–50 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
41
return percentileMs / 1000.;
42
}
43
double StatisticsTracker::GetMin()
44
{
45
Sort_();
46
if (values.empty()) {
47
return -1.;
48
}
49
return values.front() / 1000.;
50
}
51
double StatisticsTracker::GetMax()
52
{
53
Sort_();
Callers
1
WriteStats_
Method · 0.80
Calls
1
empty
Method · 0.80
Tested by
no test coverage detected