Lines Matching full:image
80 struct fb_image *image, u8 *buf, u8 *dst) in bit_putcs_aligned() argument
97 image->height); in bit_putcs_aligned()
100 image->height); in bit_putcs_aligned()
105 info->fbops->fb_imageblit(info, image); in bit_putcs_aligned()
112 struct fb_image *image, u8 *buf, in bit_putcs_unaligned() argument
131 image->height, shift_high, in bit_putcs_unaligned()
139 info->fbops->fb_imageblit(info, image); in bit_putcs_unaligned()
147 struct fb_image image; in bit_putcs() local
157 image.fg_color = fg; in bit_putcs()
158 image.bg_color = bg; in bit_putcs()
159 image.dx = xx * vc->vc_font.width; in bit_putcs()
160 image.dy = yy * vc->vc_font.height; in bit_putcs()
161 image.height = vc->vc_font.height; in bit_putcs()
162 image.depth = 1; in bit_putcs()
176 image.width = vc->vc_font.width * cnt; in bit_putcs()
177 pitch = DIV_ROUND_UP(image.width, 8) + scan_align; in bit_putcs()
179 size = pitch * image.height + buf_align; in bit_putcs()
182 image.data = dst; in bit_putcs()
186 width, cellsize, &image, buf, dst); in bit_putcs()
189 pitch, width, cellsize, &image, in bit_putcs()
192 image.dx += cnt * vc->vc_font.width; in bit_putcs()
254 if (ops->cursor_state.image.data != src || in bit_cursor()
256 ops->cursor_state.image.data = src; in bit_cursor()
272 if (ops->cursor_state.image.fg_color != fg || in bit_cursor()
273 ops->cursor_state.image.bg_color != bg || in bit_cursor()
275 ops->cursor_state.image.fg_color = fg; in bit_cursor()
276 ops->cursor_state.image.bg_color = bg; in bit_cursor()
280 if ((ops->cursor_state.image.dx != (vc->vc_font.width * vc->state.x)) || in bit_cursor()
281 (ops->cursor_state.image.dy != (vc->vc_font.height * y)) || in bit_cursor()
283 ops->cursor_state.image.dx = vc->vc_font.width * vc->state.x; in bit_cursor()
284 ops->cursor_state.image.dy = vc->vc_font.height * y; in bit_cursor()
288 if (ops->cursor_state.image.height != vc->vc_font.height || in bit_cursor()
289 ops->cursor_state.image.width != vc->vc_font.width || in bit_cursor()
291 ops->cursor_state.image.height = vc->vc_font.height; in bit_cursor()
292 ops->cursor_state.image.width = vc->vc_font.width; in bit_cursor()
359 cursor.image.data = src; in bit_cursor()
360 cursor.image.fg_color = ops->cursor_state.image.fg_color; in bit_cursor()
361 cursor.image.bg_color = ops->cursor_state.image.bg_color; in bit_cursor()
362 cursor.image.dx = ops->cursor_state.image.dx; in bit_cursor()
363 cursor.image.dy = ops->cursor_state.image.dy; in bit_cursor()
364 cursor.image.height = ops->cursor_state.image.height; in bit_cursor()
365 cursor.image.width = ops->cursor_state.image.width; in bit_cursor()
370 cursor.image.depth = 1; in bit_cursor()