/bootable/recovery/minui/ |
minui.h | 53 void gr_blit(GRSurface* source, int sx, int sy, int w, int h, int dx, int dy); 93 // screen with gr_blit(). An "alpha" surface is a grayscale image
|
graphics.cpp | 232 void gr_blit(GRSurface* source, int sx, int sy, int w, int h, int dx, int dy) { function 236 printf("gr_blit: source has wrong format\n"); 330 gr_blit(frame, 0, 0, frame->width, frame->height, x, 0);
|
resources.cpp | 134 // gr_blit() can be nothing more than a memcpy() for each row. The
|
/system/extras/slideshow/ |
slideshow.cpp | 71 gr_blit(surface, 0, 0, w, h, x, y);
|
/bootable/recovery/ |
screen_ui.cpp | 160 gr_blit(stage_surface, 0, 0, stage_width, stage_height, x, y); 183 gr_blit(frame, 0, 0, frame_width, frame_height, frame_x, frame_y); 204 gr_blit(progressBarFill, width-pos, 0, pos, height, 208 gr_blit(progressBarEmpty, 0, 0, width-pos, height, progress_x, progress_y); 213 gr_blit(progressBarFill, 0, 0, pos, height, progress_x, progress_y); 216 gr_blit(progressBarEmpty, pos, 0, width-pos, height,
|
wear_ui.cpp | 109 gr_blit(surface, 0, 0, width, height, x, y);
|
/system/core/healthd/ |
healthd_mode_charger.cpp | 290 gr_blit(surface, 0, 0, w, h, x, y);
|