| 141 | |
| 142 | |
| 143 | CProfilerImpl::CProfilerImpl() |
| 144 | { |
| 145 | u64 frequency; |
| 146 | NTiming::GetPreciseFrequency( &frequency ); |
| 147 | mFrequencyInv = 1.0f / float( frequency ); |
| 148 | |
| 149 | SProfileItemHandle root_item = AddItem( "<root>" ); |
| 150 | Enter( root_item ); |
| 151 | } |
| 152 | |
| 153 | CProfilerImpl::~CProfilerImpl() |
| 154 | { |
nothing calls this directly
no test coverage detected