Searched refs:icon (Results 1 – 6 of 6) sorted by relevance
/bootable/recovery/minui/ |
D | graphics.cpp | 137 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()
|
D | minui.h | 49 void gr_texticon(int x, int y, GRSurface* icon);
|
/bootable/recovery/ |
D | screen_ui.cpp | 87 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()
|
D | screen_ui.h | 36 void SetBackground(Icon icon); 118 void draw_background_locked(Icon icon);
|
D | ui.h | 41 virtual void SetBackground(Icon icon) = 0;
|
D | verifier_test.cpp | 129 void SetBackground(Icon icon) { } in SetBackground() argument
|