Lines Matching refs:image
1809 const struct fb_image *image) in cirrusfb_imageblit() argument
1817 if (info->flags & FBINFO_HWACCEL_DISABLED || image->depth != 1) in cirrusfb_imageblit()
1818 cfb_imageblit(info, image); in cirrusfb_imageblit()
1821 cfb_imageblit(info, image); in cirrusfb_imageblit()
1823 unsigned size = ((image->width + 7) >> 3) * image->height; in cirrusfb_imageblit()
1828 fg = image->fg_color; in cirrusfb_imageblit()
1829 bg = image->bg_color; in cirrusfb_imageblit()
1831 fg = ((u32 *)(info->pseudo_palette))[image->fg_color]; in cirrusfb_imageblit()
1832 bg = ((u32 *)(info->pseudo_palette))[image->bg_color]; in cirrusfb_imageblit()
1838 (image->dx * m) / 8, image->dy, in cirrusfb_imageblit()
1839 (image->width * m) / 8, in cirrusfb_imageblit()
1840 image->height, in cirrusfb_imageblit()
1846 (image->dx * m) / 8, image->dy, in cirrusfb_imageblit()
1847 (image->width * m) / 8, image->height, in cirrusfb_imageblit()
1850 memcpy(info->screen_base, image->data, size); in cirrusfb_imageblit()