Lines Matching defs:image
723 const struct fb_image *image)
731 (image->depth != 1 && image->depth != viapar->depth)) {
732 cfb_imageblit(info, image);
736 if (image->depth == 1) {
740 ((u32 *)info->pseudo_palette)[image->fg_color];
742 ((u32 *)info->pseudo_palette)[image->bg_color];
744 fg_color = image->fg_color;
745 bg_color = image->bg_color;
752 image->width, image->height, info->var.bits_per_pixel,
753 viapar->vram_addr, info->fix.line_length, image->dx, image->dy,
754 (u32 *)image->data, 0, 0, 0, 0, fg_color, bg_color, 0))
755 cfb_imageblit(info, image);
782 yy = cursor->image.dy - info->var.yoffset;
783 xx = cursor->image.dx - info->var.xoffset;
789 if (cursor->image.width <= 32 && cursor->image.height <= 32)
791 else if (cursor->image.width <= 64 && cursor->image.height <= 64)
795 "%dx%d", cursor->image.width, cursor->image.height);
810 fg_color = cursor->image.fg_color;
811 bg_color = cursor->image.bg_color;
844 int size = ((cursor->image.width + 7) >> 3) *
845 cursor->image.height;