From ce9f8bed1b9f7361115bd3be06c3891fc0e7d038 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Fri, 3 Feb 2017 09:41:48 -0800 Subject: [PATCH] Remove duplicate fps/downloads PROFILE_COUNTER --- interface/src/Application.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 4b6156adbc..d39ad337a8 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -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;