Searched refs:dy (Results 1 – 3 of 3) sorted by relevance
/bootable/recovery/minui/ |
D | minui.h | 40 void gr_blit(gr_surface source, int sx, int sy, int w, int h, int dx, int dy);
|
D | graphics.c | 244 void gr_blit(gr_surface source, int sx, int sy, int w, int h, int dx, int dy) { in gr_blit() argument 255 gl->texCoord2i(gl, sx - dx, sy - dy); in gr_blit() 256 gl->recti(gl, dx, dy, dx + w, dy + h); in gr_blit()
|
/bootable/recovery/ |
D | ui.c | 156 int dy = (3*gr_fb_height() + iconHeight - 2*height)/4; in draw_progress_locked() local 160 gr_fill(dx, dy, width, height); in draw_progress_locked() 167 gr_blit(gProgressBarFill, 0, 0, pos, height, dx, dy); in draw_progress_locked() 170 gr_blit(gProgressBarEmpty, pos, 0, width-pos, height, dx+pos, dy); in draw_progress_locked() 176 gr_blit(gProgressBarIndeterminate[frame], 0, 0, width, height, dx, dy); in draw_progress_locked()
|