Lines Matching defs:image
623 tgafb_mono_imageblit(struct fb_info *info, const struct fb_image *image)
635 dx = image->dx;
636 dy = image->dy;
637 width = image->width;
638 height = image->height;
647 /* Crop the image to the screen. */
661 fgcolor = image->fg_color;
662 bgcolor = image->bg_color;
690 data = (const unsigned char *) image->data;
715 /* The image data is bit big endian; we need
836 tgafb_clut_imageblit(struct fb_info *info, const struct fb_image *image)
845 dx = image->dx;
846 dy = image->dy;
847 width = image->width;
848 height = image->height;
853 /* Crop the image to the screen. */
865 data = image->data;
867 /* Now copy the image, color_expanding via the palette. */
880 * Copies a image from system memory to the screen.
883 * @image: structure defining the image.
886 tgafb_imageblit(struct fb_info *info, const struct fb_image *image)
890 /* If a mono image, regardless of FB depth, go do it. */
891 if (image->depth == 1) {
892 tgafb_mono_imageblit(info, image);
899 made to pull the data from the image buffer... */
900 if (image->depth == info->var.bits_per_pixel) {
901 cfb_imageblit(info, image);
905 /* If 24-plane FB and the image is 8-plane with CLUT, we can do it. */
906 if (!is8bpp && image->depth == 8) {
907 tgafb_clut_imageblit(info, image);