diff options
author | Tao Bao <tbao@google.com> | 2017-08-22 20:38:02 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-08-22 20:38:02 +0200 |
commit | cdc6fcaa4716e2642083e0ff85caf5fc479fddc7 (patch) | |
tree | 366f8fbdf3193a2635844b1f49d275afc22f89d6 /screen_ui.cpp | |
parent | Merge "Move Image/ImageChunk/PatchChunk declaration into header files" am: b4bc57ed39 (diff) | |
parent | Merge changes I5d7a6baa,Id0fb2d4e (diff) | |
download | android_bootable_recovery-cdc6fcaa4716e2642083e0ff85caf5fc479fddc7.tar android_bootable_recovery-cdc6fcaa4716e2642083e0ff85caf5fc479fddc7.tar.gz android_bootable_recovery-cdc6fcaa4716e2642083e0ff85caf5fc479fddc7.tar.bz2 android_bootable_recovery-cdc6fcaa4716e2642083e0ff85caf5fc479fddc7.tar.lz android_bootable_recovery-cdc6fcaa4716e2642083e0ff85caf5fc479fddc7.tar.xz android_bootable_recovery-cdc6fcaa4716e2642083e0ff85caf5fc479fddc7.tar.zst android_bootable_recovery-cdc6fcaa4716e2642083e0ff85caf5fc479fddc7.zip |
Diffstat (limited to '')
-rw-r--r-- | screen_ui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/screen_ui.cpp b/screen_ui.cpp index a02550199..5c93b6672 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) {} @@ -404,7 +404,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); |