Searched refs:icon (Results 1 – 5 of 5) sorted by relevance
/bootable/recovery/minui/ |
D | graphics.cpp | 191 void gr_texticon(int x, int y, const GRSurface* icon) { in gr_texticon() argument 192 if (icon == nullptr) return; in gr_texticon() 194 if (icon->pixel_bytes != 1) { in gr_texticon() 202 if (outside(x, y) || outside(x + icon->width - 1, y + icon->height - 1)) return; in gr_texticon() 205 const uint8_t* src_p = icon->data(); in gr_texticon() 207 TextBlend(src_p, icon->row_bytes, dst_p, row_pixels, icon->width, icon->height); in gr_texticon()
|
/bootable/recovery/minui/include/minui/ |
D | minui.h | 127 void gr_texticon(int x, int y, const GRSurface* icon);
|
/bootable/recovery/recovery_ui/include/recovery_ui/ |
D | ui.h | 75 virtual void SetBackground(Icon icon) = 0;
|
D | screen_ui.h | 204 void SetBackground(Icon icon) override;
|
/bootable/recovery/recovery_ui/ |
D | screen_ui.cpp | 979 void ScreenRecoveryUI::SetBackground(Icon icon) { in SetBackground() argument 982 current_icon_ = icon; in SetBackground()
|