Lines Matching refs:image

80 				     struct fb_image *image, u8 *buf, u8 *dst)
97 image->height);
100 image->height);
105 info->fbops->fb_imageblit(info, image);
112 struct fb_image *image, u8 *buf,
131 image->height, shift_high,
139 info->fbops->fb_imageblit(info, image);
147 struct fb_image image;
157 image.fg_color = fg;
158 image.bg_color = bg;
159 image.dx = xx * vc->vc_font.width;
160 image.dy = yy * vc->vc_font.height;
161 image.height = vc->vc_font.height;
162 image.depth = 1;
176 image.width = vc->vc_font.width * cnt;
177 pitch = DIV_ROUND_UP(image.width, 8) + scan_align;
179 size = pitch * image.height + buf_align;
182 image.data = dst;
186 width, cellsize, &image, buf, dst);
189 pitch, width, cellsize, &image,
192 image.dx += cnt * vc->vc_font.width;
263 if (ops->cursor_state.image.data != src ||
265 ops->cursor_state.image.data = src;
281 if (ops->cursor_state.image.fg_color != fg ||
282 ops->cursor_state.image.bg_color != bg ||
284 ops->cursor_state.image.fg_color = fg;
285 ops->cursor_state.image.bg_color = bg;
289 if ((ops->cursor_state.image.dx != (vc->vc_font.width * vc->vc_x)) ||
290 (ops->cursor_state.image.dy != (vc->vc_font.height * y)) ||
292 ops->cursor_state.image.dx = vc->vc_font.width * vc->vc_x;
293 ops->cursor_state.image.dy = vc->vc_font.height * y;
297 if (ops->cursor_state.image.height != vc->vc_font.height ||
298 ops->cursor_state.image.width != vc->vc_font.width ||
300 ops->cursor_state.image.height = vc->vc_font.height;
301 ops->cursor_state.image.width = vc->vc_font.width;
368 cursor.image.data = src;
369 cursor.image.fg_color = ops->cursor_state.image.fg_color;
370 cursor.image.bg_color = ops->cursor_state.image.bg_color;
371 cursor.image.dx = ops->cursor_state.image.dx;
372 cursor.image.dy = ops->cursor_state.image.dy;
373 cursor.image.height = ops->cursor_state.image.height;
374 cursor.image.width = ops->cursor_state.image.width;
379 cursor.image.depth = 1;