Lines Matching defs:image
66 * Fill in the cmd array /GDC FIFO commands/ to draw a 1bit image.
71 u32 bgcolor, const struct fb_image *image,
90 line = image->data;
91 bytes = (image->width + 7) >> 3;
93 /* and the image */
115 * Fill in the cmd array /GDC FIFO commands/ to draw a 8bit image.
120 u32 bgcolor, const struct fb_image *image,
133 line = image->data;
134 bytes = image->width;
154 * Fill in the cmd array /GDC FIFO commands/ to draw a 16bit image.
159 u32 bgcolor, const struct fb_image *image,
167 line = image->data;
168 bytes = image->width << 1;
183 const struct fb_image *image)
192 u16 width = image->width, height = image->height;
193 u16 dx = image->dx, dy = image->dy;
196 x2 = image->dx + image->width;
197 y2 = image->dy + image->height;
205 switch (image->depth) {
213 ((u32 *) (info->pseudo_palette))[image->fg_color];
215 ((u32 *) (info->pseudo_palette))[image->bg_color];
217 fgcolor = image->fg_color;
218 bgcolor = image->bg_color;
236 cfb_imageblit(info, image);
242 return cfb_imageblit(info, image);
243 cmdfn(cmd, step, dx, dy, width, height, fgcolor, bgcolor, image, info);