MCPcopy 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

emptyMethod · 0.80

Tested by

no test coverage detected