Searched refs:dx (Results 1 – 3 of 3) sorted by relevance
/bootable/recovery/ |
D | screen_ui.cpp | 149 int dx = (gr_fb_width() - width)/2; in draw_progress_locked() local 154 gr_fill(dx, dy, width, height); in draw_progress_locked() 163 gr_blit(progressBarFill, width-pos, 0, pos, height, dx+width-pos, dy); in draw_progress_locked() 166 gr_blit(progressBarEmpty, 0, 0, width-pos, height, dx, dy); in draw_progress_locked() 171 gr_blit(progressBarFill, 0, 0, pos, height, dx, dy); in draw_progress_locked() 174 gr_blit(progressBarEmpty, pos, 0, width-pos, height, dx+pos, dy); in draw_progress_locked()
|
/bootable/recovery/minui/ |
D | graphics.c | 230 void gr_blit(GRSurface* source, int sx, int sy, int w, int h, int dx, int dy) { in gr_blit() argument 238 dx += overscan_offset_x; in gr_blit() 241 if (outside(dx, dy) || outside(dx+w-1, dy+h-1)) return; in gr_blit() 244 unsigned char* dst_p = gr_draw->data + dy*gr_draw->row_bytes + dx*gr_draw->pixel_bytes; in gr_blit()
|
D | minui.h | 55 void gr_blit(gr_surface source, int sx, int sy, int w, int h, int dx, int dy);
|