From 46b3d84be583946babe9b0185c285d9e1131aa7f Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Wed, 26 Jun 2019 15:41:50 -0700 Subject: [PATCH] remove unused cruft --- interface/src/Application.cpp | 2 -- interface/src/Application.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index f2ffbcc3ac..234e3d597a 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -6186,8 +6186,6 @@ void Application::update(float deltaTime) { bool enableInterstitial = DependencyManager::get()->getDomainHandler().getInterstitialModeEnabled(); if (gpuTextureMemSizeStable() || !enableInterstitial) { - // we've received a new full-scene octree stats packet, or it's been long enough to try again anyway - _lastPhysicsCheckTime = now; _fullSceneCounterAtLastPhysicsCheck = _fullSceneReceivedCounter; _lastQueriedViews.clear(); // Force new view. diff --git a/interface/src/Application.h b/interface/src/Application.h index 641f62461f..bd7c9d758e 100644 --- a/interface/src/Application.h +++ b/interface/src/Application.h @@ -786,8 +786,6 @@ private: qint64 _gpuTextureMemSizeStabilityCount { 0 }; qint64 _gpuTextureMemSizeAtLastCheck { 0 }; - quint64 _lastPhysicsCheckTime { usecTimestampNow() }; // when did we last check to see if physics was ready - bool _keyboardDeviceHasFocus { true }; ConnectionMonitor _connectionMonitor;