Lines Matching defs:image
390 * cg6_imageblit - Copies a image from system memory to the screen.
393 * @image: structure defining the image.
395 static void cg6_imageblit(struct fb_info *info, const struct fb_image *image)
399 const u8 *data = image->data;
404 if (image->depth > 1) {
405 cfb_imageblit(info, image);
413 sbus_writel(image->fg_color, &fbc->fg);
414 sbus_writel(image->bg_color, &fbc->bg);
424 x = image->dx;
425 y = image->dy;
426 for (i = 0; i < image->height; i++) {
427 width = image->width;
469 x = image->dx;