Home
last modified time | relevance | path

Searched refs:dx (Results 1 – 4 of 4) sorted by relevance

/bootable/recovery/minui/
Dresources.c148 int dx = x * 4; in res_create_surface() local
153 pRow[dx ] = r; // r in res_create_surface()
154 pRow[dx + 1] = g; // g in res_create_surface()
155 pRow[dx + 2] = b; // b in res_create_surface()
156 pRow[dx + 3] = a; in res_create_surface()
Dgraphics.c293 void gr_blit(gr_surface source, int sx, int sy, int w, int h, int dx, int dy) { in gr_blit() argument
299 dx += overscan_offset_x; in gr_blit()
307 gl->texCoord2i(gl, sx - dx, sy - dy); in gr_blit()
308 gl->recti(gl, dx, dy, dx + w, dy + h); in gr_blit()
Dminui.h45 void gr_blit(gr_surface source, int sx, int sy, int w, int h, int dx, int dy);
/bootable/recovery/
Dscreen_ui.cpp151 int dx = (gr_fb_width() - width)/2; in draw_progress_locked() local
156 gr_fill(dx, dy, width, height); in draw_progress_locked()
165 gr_blit(progressBarFill, width-pos, 0, pos, height, dx+width-pos, dy); in draw_progress_locked()
168 gr_blit(progressBarEmpty, 0, 0, width-pos, height, dx, dy); in draw_progress_locked()
173 gr_blit(progressBarFill, 0, 0, pos, height, dx, dy); in draw_progress_locked()
176 gr_blit(progressBarEmpty, pos, 0, width-pos, height, dx+pos, dy); in draw_progress_locked()
183 gr_blit(progressBarIndeterminate[frame], 0, 0, width, height, dx, dy); in draw_progress_locked()