summaryrefslogtreecommitdiffstats
path: root/vr_ui.h
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2017-10-07 10:10:27 +0200
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-10-07 10:10:27 +0200
commit6f5ed7b28aa47b9aa2b33c7788c25792307e088d (patch)
tree859affca35020cf3177db3ba5c80577530984ffc /vr_ui.h
parentSnap for 4380820 from b59132d66c5e77970d05d195210872987cf0e69c to pi-release (diff)
parentMerge "Don't include "error_code.h" in edify/expr.h." am: d999ced1d1 am: e196918f54 am: 3bc65953ab (diff)
downloadandroid_bootable_recovery-6f5ed7b28aa47b9aa2b33c7788c25792307e088d.tar
android_bootable_recovery-6f5ed7b28aa47b9aa2b33c7788c25792307e088d.tar.gz
android_bootable_recovery-6f5ed7b28aa47b9aa2b33c7788c25792307e088d.tar.bz2
android_bootable_recovery-6f5ed7b28aa47b9aa2b33c7788c25792307e088d.tar.lz
android_bootable_recovery-6f5ed7b28aa47b9aa2b33c7788c25792307e088d.tar.xz
android_bootable_recovery-6f5ed7b28aa47b9aa2b33c7788c25792307e088d.tar.zst
android_bootable_recovery-6f5ed7b28aa47b9aa2b33c7788c25792307e088d.zip
Diffstat (limited to '')
-rw-r--r--vr_ui.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/vr_ui.h b/vr_ui.h
index d996c145f..eeb458912 100644
--- a/vr_ui.h
+++ b/vr_ui.h
@@ -28,8 +28,14 @@ class VrRecoveryUI : public ScreenRecoveryUI {
// Can vary per device depending on screen size and lens distortion.
const int kStereoOffset;
- bool InitTextParams() override;
+ int ScreenWidth() const override;
+ int ScreenHeight() const override;
+ void DrawSurface(GRSurface* surface, int sx, int sy, int w, int h, int dx, int dy) const override;
+ int DrawHorizontalRule(int y) const override;
+ void DrawHighlightBar(int x, int y, int width, int height) const override;
+ void DrawFill(int x, int y, int w, int h) const override;
+ void DrawTextIcon(int x, int y, GRSurface* surface) const override;
int DrawTextLine(int x, int y, const char* line, bool bold) const override;
};