Hi,
It seems the interface for Timer in the profiler was changed over the last week or so. To keep the original behavior and remove the deprecation warnings, would it be correct to change
static Timer mytimer ("MyTimer", 2);
to
static Timer mytimer("MyTimer", NoTracing);
and
ThreadRegionTimer reg(mytimer, TaskManager::GetThreadId());
to
RegionTimer reg(mytimer)
?
Thanks!
Best,
Dow