Remove performance measurements that have been supersceded by using Tracy

This commit is contained in:
Alexander Bock
2020-08-05 18:28:08 +02:00
parent 1acd9302b9
commit 6e9db78f40
27 changed files with 18 additions and 1545 deletions
-4
View File
@@ -59,7 +59,6 @@ namespace interaction {
class SessionRecording;
class ShortcutManager;
} // namespace interaction
namespace performance { class PerformanceManager; }
namespace properties { class PropertyOwner; }
namespace scripting {
class ScriptEngine;
@@ -96,7 +95,6 @@ interaction::KeybindingManager& gKeybindingManager();
interaction::NavigationHandler& gNavigationHandler();
interaction::SessionRecording& gSessionRecording();
interaction::ShortcutManager& gShortcutManager();
performance::PerformanceManager& gPerformanceManager();
properties::PropertyOwner& gRootPropertyOwner();
properties::PropertyOwner& gScreenSpaceRootPropertyOwner();
scripting::ScriptEngine& gScriptEngine();
@@ -134,8 +132,6 @@ static interaction::KeybindingManager& keybindingManager = detail::gKeybindingMa
static interaction::NavigationHandler& navigationHandler = detail::gNavigationHandler();
static interaction::SessionRecording& sessionRecording = detail::gSessionRecording();
static interaction::ShortcutManager& shortcutManager = detail::gShortcutManager();
static performance::PerformanceManager& performanceManager =
detail::gPerformanceManager();
static properties::PropertyOwner& rootPropertyOwner = detail::gRootPropertyOwner();
static properties::PropertyOwner& screenSpaceRootPropertyOwner =
detail::gScreenSpaceRootPropertyOwner();