diff options
author | Tao Bao <tbao@google.com> | 2017-10-06 16:28:22 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-10-06 16:28:22 +0200 |
commit | 9a874a4e5fcdc7f89ba996e38fc3e08a70ca73eb (patch) | |
tree | ff3dae97202620c6a9a37f891b580ecf3fd6be7e /vr_ui.cpp | |
parent | Merge "graphics: add rotation logic" (diff) | |
parent | vr_ui: drawing changes (diff) | |
download | android_bootable_recovery-9a874a4e5fcdc7f89ba996e38fc3e08a70ca73eb.tar android_bootable_recovery-9a874a4e5fcdc7f89ba996e38fc3e08a70ca73eb.tar.gz android_bootable_recovery-9a874a4e5fcdc7f89ba996e38fc3e08a70ca73eb.tar.bz2 android_bootable_recovery-9a874a4e5fcdc7f89ba996e38fc3e08a70ca73eb.tar.lz android_bootable_recovery-9a874a4e5fcdc7f89ba996e38fc3e08a70ca73eb.tar.xz android_bootable_recovery-9a874a4e5fcdc7f89ba996e38fc3e08a70ca73eb.tar.zst android_bootable_recovery-9a874a4e5fcdc7f89ba996e38fc3e08a70ca73eb.zip |
Diffstat (limited to 'vr_ui.cpp')
-rw-r--r-- | vr_ui.cpp | 44 |
1 files changed, 37 insertions, 7 deletions
@@ -20,16 +20,46 @@ VrRecoveryUI::VrRecoveryUI() : kStereoOffset(RECOVERY_UI_VR_STEREO_OFFSET) {} -bool VrRecoveryUI::InitTextParams() { - if (!ScreenRecoveryUI::InitTextParams()) return false; - int mid_divide = gr_fb_width() / 2; - text_cols_ = (mid_divide - kMarginWidth - kStereoOffset) / char_width_; - return true; +int VrRecoveryUI::ScreenWidth() const { + return gr_fb_width() / 2; +} + +int VrRecoveryUI::ScreenHeight() const { + return gr_fb_height(); +} + +void VrRecoveryUI::DrawSurface(GRSurface* surface, int sx, int sy, int w, int h, int dx, + int dy) const { + gr_blit(surface, sx, sy, w, h, dx + kStereoOffset, dy); + gr_blit(surface, sx, sy, w, h, dx - kStereoOffset + ScreenWidth(), dy); +} + +void VrRecoveryUI::DrawTextIcon(int x, int y, GRSurface* surface) const { + gr_texticon(x + kStereoOffset, y, surface); + gr_texticon(x - kStereoOffset + ScreenWidth(), y, surface); } int VrRecoveryUI::DrawTextLine(int x, int y, const char* line, bool bold) const { - int mid_divide = gr_fb_width() / 2; gr_text(gr_sys_font(), x + kStereoOffset, y, line, bold); - gr_text(gr_sys_font(), x - kStereoOffset + mid_divide, y, line, bold); + gr_text(gr_sys_font(), x - kStereoOffset + ScreenWidth(), y, line, bold); return char_height_ + 4; } + +int VrRecoveryUI::DrawHorizontalRule(int y) const { + y += 4; + gr_fill(kMarginWidth + kStereoOffset, y, ScreenWidth() - kMarginWidth + kStereoOffset, y + 2); + gr_fill(ScreenWidth() + kMarginWidth - kStereoOffset, y, + gr_fb_width() - kMarginWidth - kStereoOffset, y + 2); + return y + 4; +} + +void VrRecoveryUI::DrawHighlightBar(int x, int y, int width, int height) const { + gr_fill(kMarginWidth + kStereoOffset, y, ScreenWidth() - kMarginWidth + kStereoOffset, y + height); + gr_fill(ScreenWidth() + kMarginWidth - kStereoOffset, y, + gr_fb_width() - kMarginWidth - kStereoOffset, y + height); +} + +void VrRecoveryUI::DrawFill(int x, int y, int w, int h) const { + gr_fill(x + kStereoOffset, y, w, h); + gr_fill(x - kStereoOffset + ScreenWidth(), y, w, h); +} |