Lines Matching refs:image
736 const struct fb_image *image) in viafb_imageblit() argument
744 (image->depth != 1 && image->depth != viapar->depth)) { in viafb_imageblit()
745 cfb_imageblit(info, image); in viafb_imageblit()
749 if (image->depth == 1) { in viafb_imageblit()
753 ((u32 *)info->pseudo_palette)[image->fg_color]; in viafb_imageblit()
755 ((u32 *)info->pseudo_palette)[image->bg_color]; in viafb_imageblit()
757 fg_color = image->fg_color; in viafb_imageblit()
758 bg_color = image->bg_color; in viafb_imageblit()
765 image->width, image->height, info->var.bits_per_pixel, in viafb_imageblit()
766 viapar->vram_addr, info->fix.line_length, image->dx, image->dy, in viafb_imageblit()
767 (u32 *)image->data, 0, 0, 0, 0, fg_color, bg_color, 0)) in viafb_imageblit()
768 cfb_imageblit(info, image); in viafb_imageblit()
795 yy = cursor->image.dy - info->var.yoffset; in viafb_cursor()
796 xx = cursor->image.dx - info->var.xoffset; in viafb_cursor()
802 if (cursor->image.width <= 32 && cursor->image.height <= 32) in viafb_cursor()
804 else if (cursor->image.width <= 64 && cursor->image.height <= 64) in viafb_cursor()
808 "%dx%d", cursor->image.width, cursor->image.height); in viafb_cursor()
823 fg_color = cursor->image.fg_color; in viafb_cursor()
824 bg_color = cursor->image.bg_color; in viafb_cursor()
857 int size = ((cursor->image.width + 7) >> 3) * in viafb_cursor()
858 cursor->image.height; in viafb_cursor()