From ff288fdd5d287118abafe5b528ce9777d2062f89 Mon Sep 17 00:00:00 2001 From: Chris Collins Date: Wed, 15 Jul 2015 13:09:55 -0700 Subject: [PATCH] While we work on FPS I have decreased the default LOD FPS While we work on FPS I have decreased the default LOD FPS. In a new users preferences this will now show as 15 desktop and 30 HMD. --- interface/src/LODManager.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/LODManager.h b/interface/src/LODManager.h index 98ababbda0..b0185b528f 100644 --- a/interface/src/LODManager.h +++ b/interface/src/LODManager.h @@ -17,8 +17,8 @@ #include #include -const float DEFAULT_DESKTOP_LOD_DOWN_FPS = 30.0; -const float DEFAULT_HMD_LOD_DOWN_FPS = 60.0; +const float DEFAULT_DESKTOP_LOD_DOWN_FPS = 15.0; +const float DEFAULT_HMD_LOD_DOWN_FPS = 30.0; const float MAX_LIKELY_DESKTOP_FPS = 59.0; // this is essentially, V-synch - 1 fps const float MAX_LIKELY_HMD_FPS = 74.0; // this is essentially, V-synch - 1 fps const float INCREASE_LOD_GAP = 15.0f;