• Home
  • Raw
  • Download

Lines Matching refs:image

52 static void color_imageblit(const struct fb_image *image, struct fb_info *p,  in color_imageblit()  argument
61 const u8 *src = image->data; in color_imageblit()
64 for (i = image->height; i--; ) { in color_imageblit()
65 n = image->width; in color_imageblit()
111 static void slow_imageblit(const struct fb_image *image, struct fb_info *p, in slow_imageblit() argument
119 u32 spitch = (image->width+7)/8; in slow_imageblit()
120 const u8 *src = image->data, *s; in slow_imageblit()
127 for (i = image->height; i--; ) { in slow_imageblit()
130 j = image->width; in slow_imageblit()
186 static void fast_imageblit(const struct fb_image *image, struct fb_info *p, in fast_imageblit() argument
190 u32 ppw = 32/bpp, spitch = (image->width + 7)/8; in fast_imageblit()
192 const char *s = image->data, *src; in fast_imageblit()
219 k = image->width/ppw; in fast_imageblit()
221 for (i = image->height; i--; ) { in fast_imageblit()
240 void sys_imageblit(struct fb_info *p, const struct fb_image *image) in sys_imageblit() argument
244 u32 width = image->width; in sys_imageblit()
245 u32 dx = image->dx, dy = image->dy; in sys_imageblit()
262 if (image->depth == 1) { in sys_imageblit()
265 fgcolor = ((u32*)(p->pseudo_palette))[image->fg_color]; in sys_imageblit()
266 bgcolor = ((u32*)(p->pseudo_palette))[image->bg_color]; in sys_imageblit()
268 fgcolor = image->fg_color; in sys_imageblit()
269 bgcolor = image->bg_color; in sys_imageblit()
275 fast_imageblit(image, p, dst1, fgcolor, bgcolor); in sys_imageblit()
277 slow_imageblit(image, p, dst1, fgcolor, bgcolor, in sys_imageblit()
280 color_imageblit(image, p, dst1, start_index, pitch_index); in sys_imageblit()