summaryrefslogtreecommitdiffstats
path: root/screen_ui.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-08-03 02:11:04 +0200
committerTao Bao <tbao@google.com>2017-08-10 18:31:17 +0200
commit0470ceea381775b09eee931858c3320be88cc637 (patch)
tree7beb1970589bd76180f0342c3e8ef4323c8341f6 /screen_ui.cpp
parentMerge "update_verifier: verify blocks in parallel" (diff)
downloadandroid_bootable_recovery-0470ceea381775b09eee931858c3320be88cc637.tar
android_bootable_recovery-0470ceea381775b09eee931858c3320be88cc637.tar.gz
android_bootable_recovery-0470ceea381775b09eee931858c3320be88cc637.tar.bz2
android_bootable_recovery-0470ceea381775b09eee931858c3320be88cc637.tar.lz
android_bootable_recovery-0470ceea381775b09eee931858c3320be88cc637.tar.xz
android_bootable_recovery-0470ceea381775b09eee931858c3320be88cc637.tar.zst
android_bootable_recovery-0470ceea381775b09eee931858c3320be88cc637.zip
Diffstat (limited to 'screen_ui.cpp')
-rw-r--r--screen_ui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/screen_ui.cpp b/screen_ui.cpp
index 8f792f162..c83a7659e 100644
--- a/screen_ui.cpp
+++ b/screen_ui.cpp
@@ -53,6 +53,7 @@ static double now() {
ScreenRecoveryUI::ScreenRecoveryUI()
: kMarginWidth(RECOVERY_UI_MARGIN_WIDTH),
kMarginHeight(RECOVERY_UI_MARGIN_HEIGHT),
+ kAnimationFps(RECOVERY_UI_ANIMATION_FPS),
density_(static_cast<float>(android::base::GetIntProperty("ro.sf.lcd_density", 160)) / 160.f),
currentIcon(NONE),
progressBarType(EMPTY),
@@ -77,7 +78,6 @@ ScreenRecoveryUI::ScreenRecoveryUI()
loop_frames(0),
current_frame(0),
intro_done(false),
- animation_fps(30), // TODO: there's currently no way to infer this.
stage(-1),
max_stage(-1),
updateMutex(PTHREAD_MUTEX_INITIALIZER) {}
@@ -375,7 +375,7 @@ void* ScreenRecoveryUI::ProgressThreadStartRoutine(void* data) {
}
void ScreenRecoveryUI::ProgressThreadLoop() {
- double interval = 1.0 / animation_fps;
+ double interval = 1.0 / kAnimationFps;
while (true) {
double start = now();
pthread_mutex_lock(&updateMutex);