summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2017-08-29 10:08:16 +0200
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-08-29 10:08:16 +0200
commit50663b1870854d167b9013022e63657758aede2c (patch)
tree8a20513303ca37815493577c6d898fb57420bd40
parentrelease-request-2c5efa61-1f02-4e74-bfeb-1ca3cd5028bd-for-git_pi-release-4301718 snap-temp-L56500000097146696 (diff)
parentMerge "Add libasyncio." am: d179c923d8 am: d21fb1ece0 am: 4dc141e6ba (diff)
downloadandroid_bootable_recovery-50663b1870854d167b9013022e63657758aede2c.tar
android_bootable_recovery-50663b1870854d167b9013022e63657758aede2c.tar.gz
android_bootable_recovery-50663b1870854d167b9013022e63657758aede2c.tar.bz2
android_bootable_recovery-50663b1870854d167b9013022e63657758aede2c.tar.lz
android_bootable_recovery-50663b1870854d167b9013022e63657758aede2c.tar.xz
android_bootable_recovery-50663b1870854d167b9013022e63657758aede2c.tar.zst
android_bootable_recovery-50663b1870854d167b9013022e63657758aede2c.zip
-rw-r--r--Android.mk1
-rw-r--r--wear_ui.cpp24
-rw-r--r--wear_ui.h11
3 files changed, 3 insertions, 33 deletions
diff --git a/Android.mk b/Android.mk
index 776e6ea19..aaae6a0ab 100644
--- a/Android.mk
+++ b/Android.mk
@@ -159,6 +159,7 @@ LOCAL_STATIC_LIBRARIES := \
libmounts \
libz \
libminadbd \
+ libasyncio \
libfusesideload \
libminui \
libpng \
diff --git a/wear_ui.cpp b/wear_ui.cpp
index 169ef20e1..e4806718d 100644
--- a/wear_ui.cpp
+++ b/wear_ui.cpp
@@ -18,6 +18,7 @@
#include <errno.h>
#include <fcntl.h>
+#include <pthread.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
@@ -38,11 +39,6 @@
#include "common.h"
#include "device.h"
-// There's only (at most) one of these objects, and global callbacks
-// (for pthread_create, and the input event system) need to find it,
-// so use a global variable.
-static WearRecoveryUI* self = NULL;
-
// Return the current time as a double (including fractions of a second).
static double now() {
struct timeval tv;
@@ -63,8 +59,6 @@ WearRecoveryUI::WearRecoveryUI()
touch_screen_allowed_ = true;
for (size_t i = 0; i < 5; i++) backgroundIcon[i] = NULL;
-
- self = this;
}
int WearRecoveryUI::GetProgressBaseline() const {
@@ -191,20 +185,6 @@ void WearRecoveryUI::update_progress_locked() {
gr_flip();
}
-bool WearRecoveryUI::InitTextParams() {
- if (!ScreenRecoveryUI::InitTextParams()) {
- return false;
- }
-
- text_cols_ = (gr_fb_width() - (kMarginWidth * 2)) / char_width_;
-
- if (text_rows_ > kMaxRows) text_rows_ = kMaxRows;
- if (text_cols_ > kMaxCols) text_cols_ = kMaxCols;
-
- visible_text_rows = (gr_fb_height() - (kMarginHeight * 2)) / char_height_;
- return true;
-}
-
bool WearRecoveryUI::Init(const std::string& locale) {
if (!ScreenRecoveryUI::Init(locale)) {
return false;
@@ -269,7 +249,7 @@ void WearRecoveryUI::StartMenu(const char* const* headers, const char* const* it
show_menu = true;
menu_sel = initial_selection;
menu_start = 0;
- menu_end = visible_text_rows - 1 - kMenuUnusableRows;
+ menu_end = text_rows_ - 1 - kMenuUnusableRows;
if (menu_items <= menu_end) menu_end = menu_items;
update_screen_locked();
}
diff --git a/wear_ui.h b/wear_ui.h
index 3bd90b699..9731f4161 100644
--- a/wear_ui.h
+++ b/wear_ui.h
@@ -50,8 +50,6 @@ class WearRecoveryUI : public ScreenRecoveryUI {
int GetProgressBaseline() const override;
- bool InitTextParams() override;
-
void update_progress_locked() override;
void PrintV(const char*, bool, va_list) override;
@@ -59,17 +57,8 @@ class WearRecoveryUI : public ScreenRecoveryUI {
private:
GRSurface* backgroundIcon[5];
- static const int kMaxCols = 96;
- static const int kMaxRows = 96;
-
- // Number of text rows seen on screen
- int visible_text_rows;
-
- const char* const* menu_headers_;
int menu_start, menu_end;
- pthread_t progress_t;
-
void draw_background_locked() override;
void draw_screen_locked() override;