Lines Matching refs:image
91 void savagefb_imageblit(struct fb_info *info, const struct fb_image *image) in savagefb_imageblit() argument
96 u32 *src = (u32 *) image->data; in savagefb_imageblit()
98 if (!image->width || !image->height) in savagefb_imageblit()
101 if (image->depth != 1) { in savagefb_imageblit()
102 cfb_imageblit(info, image); in savagefb_imageblit()
107 fg = image->fg_color; in savagefb_imageblit()
108 bg = image->bg_color; in savagefb_imageblit()
110 fg = ((u32 *)info->pseudo_palette)[image->fg_color]; in savagefb_imageblit()
111 bg = ((u32 *)info->pseudo_palette)[image->bg_color]; in savagefb_imageblit()
121 width = (image->width + 31) & ~31; in savagefb_imageblit()
122 size = (width * image->height)/8; in savagefb_imageblit()
127 BCI_SEND(BCI_CLIP_LR(image->dx, image->dx + image->width - 1)); in savagefb_imageblit()
130 BCI_SEND(BCI_X_Y(image->dx, image->dy)); in savagefb_imageblit()
131 BCI_SEND(BCI_W_H(width, image->height)); in savagefb_imageblit()