Lines Matching defs:image
389 * cg6_imageblit - Copies a image from system memory to the screen.
392 * @image: structure defining the image.
394 static void cg6_imageblit(struct fb_info *info, const struct fb_image *image)
398 const u8 *data = image->data;
403 if (image->depth > 1) {
404 cfb_imageblit(info, image);
412 sbus_writel(image->fg_color, &fbc->fg);
413 sbus_writel(image->bg_color, &fbc->bg);
423 x = image->dx;
424 y = image->dy;
425 for (i = 0; i < image->height; i++) {
426 width = image->width;
468 x = image->dx;