Lines Matching defs:image
68 * Fill in the cmd array /GDC FIFO commands/ to draw a 1bit image.
73 u32 bgcolor, const struct fb_image *image,
92 line = image->data;
93 bytes = (image->width + 7) >> 3;
95 /* and the image */
117 * Fill in the cmd array /GDC FIFO commands/ to draw a 8bit image.
122 u32 bgcolor, const struct fb_image *image,
135 line = ptr = image->data;
136 bytes = image->width;
156 * Fill in the cmd array /GDC FIFO commands/ to draw a 16bit image.
161 u32 bgcolor, const struct fb_image *image,
169 line = image->data;
170 bytes = image->width << 1;
185 const struct fb_image *image)
194 u16 width = image->width, height = image->height;
195 u16 dx = image->dx, dy = image->dy;
198 x2 = image->dx + image->width;
199 y2 = image->dy + image->height;
207 switch (image->depth) {
215 ((u32 *) (info->pseudo_palette))[image->fg_color];
217 ((u32 *) (info->pseudo_palette))[image->bg_color];
219 fgcolor = image->fg_color;
220 bgcolor = image->bg_color;
238 cfb_imageblit(info, image);
244 return cfb_imageblit(info, image);
245 cmdfn(cmd, step, dx, dy, width, height, fgcolor, bgcolor, image, info);