Lines Matching refs:image
77 nv04_fbcon_imageblit(struct fb_info *info, const struct fb_image *image) in nv04_fbcon_imageblit() argument
86 uint32_t *data = (uint32_t *)image->data; in nv04_fbcon_imageblit()
89 if (image->depth != 1) in nv04_fbcon_imageblit()
96 width = ALIGN(image->width, 8); in nv04_fbcon_imageblit()
97 dsize = ALIGN(width * image->height, 32) >> 5; in nv04_fbcon_imageblit()
101 fg = ((uint32_t *) info->pseudo_palette)[image->fg_color]; in nv04_fbcon_imageblit()
102 bg = ((uint32_t *) info->pseudo_palette)[image->bg_color]; in nv04_fbcon_imageblit()
104 fg = image->fg_color; in nv04_fbcon_imageblit()
105 bg = image->bg_color; in nv04_fbcon_imageblit()
109 OUT_RING(chan, (image->dy << 16) | (image->dx & 0xffff)); in nv04_fbcon_imageblit()
110 OUT_RING(chan, ((image->dy + image->height) << 16) | in nv04_fbcon_imageblit()
111 ((image->dx + image->width) & 0xffff)); in nv04_fbcon_imageblit()
114 OUT_RING(chan, (image->height << 16) | width); in nv04_fbcon_imageblit()
115 OUT_RING(chan, (image->height << 16) | image->width); in nv04_fbcon_imageblit()
116 OUT_RING(chan, (image->dy << 16) | (image->dx & 0xffff)); in nv04_fbcon_imageblit()