Lines Matching refs:image
77 nv04_fbcon_imageblit(struct fb_info *info, const struct fb_image *image) in nv04_fbcon_imageblit() argument
85 uint32_t *data = (uint32_t *)image->data; in nv04_fbcon_imageblit()
88 if (image->depth != 1) in nv04_fbcon_imageblit()
97 fg = ((uint32_t *) info->pseudo_palette)[image->fg_color]; in nv04_fbcon_imageblit()
98 bg = ((uint32_t *) info->pseudo_palette)[image->bg_color]; in nv04_fbcon_imageblit()
100 fg = image->fg_color; in nv04_fbcon_imageblit()
101 bg = image->bg_color; in nv04_fbcon_imageblit()
105 OUT_RING(chan, (image->dy << 16) | (image->dx & 0xffff)); in nv04_fbcon_imageblit()
106 OUT_RING(chan, ((image->dy + image->height) << 16) | in nv04_fbcon_imageblit()
107 ((image->dx + image->width) & 0xffff)); in nv04_fbcon_imageblit()
110 OUT_RING(chan, (image->height << 16) | image->width); in nv04_fbcon_imageblit()
111 OUT_RING(chan, (image->height << 16) | image->width); in nv04_fbcon_imageblit()
112 OUT_RING(chan, (image->dy << 16) | (image->dx & 0xffff)); in nv04_fbcon_imageblit()
114 dsize = ALIGN(image->width * image->height, 32) >> 5; in nv04_fbcon_imageblit()