Remove duplicate fps/downloads PROFILE_COUNTER

This commit is contained in:
Ryan Huffman 2017-02-03 09:41:48 -08:00
parent 9d4fdfa38a
commit ce9f8bed1b

View file

@ -3411,10 +3411,6 @@ void Application::idle(float nsecsElapsed) {
static std::once_flag once;
std::call_once(once, [] {
initCpuUsage();
PROFILE_COUNTER(app, "fps", { { "fps", _frameCounter.rate() } });
PROFILE_COUNTER(app, "downloads", {
{ "current", ResourceCache::getLoadingRequests().length() },
{ "pending", ResourceCache::getPendingRequestCount() }
});
vec3 kernelUserAndSystem;