Lines Matching defs:image
223 * @src: address of image data
367 void i810fb_imageblit(struct fb_info *info, const struct fb_image *image)
373 par->depth == 4 || image->depth != 1) {
374 cfb_imageblit(info, image);
380 fg = image->fg_color;
381 bg = image->bg_color;
385 fg = ((u32 *)(info->pseudo_palette))[image->fg_color];
386 bg = ((u32 *)(info->pseudo_palette))[image->bg_color];
390 dst = info->fix.smem_start + (image->dy * info->fix.line_length) +
391 (image->dx * par->depth);
393 size = (image->width+7)/8 + 1;
395 size *= image->height;
398 mono_src_copy_imm_blit(image->width * par->depth,
399 image->height, info->fix.line_length,
401 PAT_COPY_ROP, dst, (u32 *) image->data,