Lines Matching refs:image

1118 static void vga_8planes_imageblit(struct fb_info *info, const struct fb_image *image)  in vga_8planes_imageblit()  argument
1125 const char *cdat = image->data; in vga_8planes_imageblit()
1126 u32 dx = image->dx; in vga_8planes_imageblit()
1131 where = info->screen_base + dx + image->dy * info->fix.line_length; in vga_8planes_imageblit()
1134 writeb(image->bg_color, where); in vga_8planes_imageblit()
1137 setmask(image->fg_color ^ image->bg_color); in vga_8planes_imageblit()
1140 for (y = 0; y < image->height; y++, where += info->fix.line_length) in vga_8planes_imageblit()
1149 static void vga_imageblit_expand(struct fb_info *info, const struct fb_image *image) in vga_imageblit_expand() argument
1151 char __iomem *where = info->screen_base + (image->dx/8) + in vga_imageblit_expand()
1152 image->dy * info->fix.line_length; in vga_imageblit_expand()
1154 char *cdat = (char *) image->data; in vga_imageblit_expand()
1165 setcolor(image->fg_color); in vga_imageblit_expand()
1169 writeb(image->bg_color, where); in vga_imageblit_expand()
1174 for (y = 0; y < image->height; y++) { in vga_imageblit_expand()
1176 for (x = image->width/8; x--;) in vga_imageblit_expand()
1185 setcolor(image->bg_color); in vga_imageblit_expand()
1189 for (y = 0; y < image->height; y++) { in vga_imageblit_expand()
1191 for (x=image->width/8; x--;){ in vga_imageblit_expand()
1193 setcolor(image->fg_color); in vga_imageblit_expand()
1204 vga_8planes_imageblit(info, image); in vga_imageblit_expand()
1208 cfb_imageblit(info, image); in vga_imageblit_expand()
1213 static void vga_imageblit_color(struct fb_info *info, const struct fb_image *image) in vga_imageblit_color() argument
1220 info->screen_base + image->dy * info->fix.line_length + in vga_imageblit_color()
1221 image->dx/8; in vga_imageblit_color()
1222 const char *cdat = image->data; in vga_imageblit_color()
1234 for (y = 0; y < image->height; y++) { in vga_imageblit_color()
1235 for (x = 0; x < image->width; x++) { in vga_imageblit_color()
1251 cfb_imageblit(info, image); in vga_imageblit_color()
1258 static void vga16fb_imageblit(struct fb_info *info, const struct fb_image *image) in vga16fb_imageblit() argument
1260 if (image->depth == 1) in vga16fb_imageblit()
1261 vga_imageblit_expand(info, image); in vga16fb_imageblit()
1263 vga_imageblit_color(info, image); in vga16fb_imageblit()