Home
last modified time | relevance | path

Searched refs:icon (Results 1 – 6 of 6) sorted by relevance

/bootable/recovery/minui/
Dgraphics.cpp137 void gr_texticon(int x, int y, GRSurface* icon) { in gr_texticon() argument
138 if (icon == NULL) return; in gr_texticon()
140 if (icon->pixel_bytes != 1) { in gr_texticon()
148 if (outside(x, y) || outside(x+icon->width-1, y+icon->height-1)) return; in gr_texticon()
150 unsigned char* src_p = icon->data; in gr_texticon()
153 text_blend(src_p, icon->row_bytes, in gr_texticon()
155 icon->width, icon->height); in gr_texticon()
Dminui.h49 void gr_texticon(int x, int y, GRSurface* icon);
/bootable/recovery/
Dscreen_ui.cpp87 void ScreenRecoveryUI::draw_background_locked(Icon icon) { in draw_background_locked() argument
92 if (icon) { in draw_background_locked()
93 GRSurface* surface = backgroundIcon[icon]; in draw_background_locked()
94 if (icon == INSTALLING_UPDATE || icon == ERASING) { in draw_background_locked()
97 GRSurface* text_surface = backgroundText[icon]; in draw_background_locked()
136 GRSurface* icon = installation[installingFrame]; in draw_progress_locked() local
137 gr_blit(icon, 0, 0, gr_get_width(icon), gr_get_height(icon), iconX, iconY); in draw_progress_locked()
453 void ScreenRecoveryUI::SetBackground(Icon icon) { in SetBackground() argument
456 currentIcon = icon; in SetBackground()
Dscreen_ui.h36 void SetBackground(Icon icon);
118 void draw_background_locked(Icon icon);
Dui.h41 virtual void SetBackground(Icon icon) = 0;
Dverifier_test.cpp129 void SetBackground(Icon icon) { } in SetBackground() argument