From e3e45e16c10b729e587676bff66582bfa3698eba Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Fri, 2 Feb 2018 13:46:08 -0800 Subject: [PATCH] Disable LOD adjustment on android --- interface/src/Application.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 8c427c0e39..48c15439ab 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -5131,7 +5131,9 @@ void Application::update(float deltaTime) { bool showWarnings = Menu::getInstance()->isOptionChecked(MenuOption::PipelineWarnings); PerformanceWarning warn(showWarnings, "Application::update()"); +#if !defined(Q_OS_ANDROID) updateLOD(deltaTime); +#endif // TODO: break these out into distinct perfTimers when they prove interesting {