Lines Matching refs:image

65 				     struct fb_image *image, u8 *buf, u8 *dst)  in bit_putcs_aligned()  argument
82 image->height); in bit_putcs_aligned()
85 image->height); in bit_putcs_aligned()
90 info->fbops->fb_imageblit(info, image); in bit_putcs_aligned()
97 struct fb_image *image, u8 *buf, in bit_putcs_unaligned() argument
116 image->height, shift_high, in bit_putcs_unaligned()
124 info->fbops->fb_imageblit(info, image); in bit_putcs_unaligned()
132 struct fb_image image; in bit_putcs() local
142 image.fg_color = fg; in bit_putcs()
143 image.bg_color = bg; in bit_putcs()
144 image.dx = xx * vc->vc_font.width; in bit_putcs()
145 image.dy = yy * vc->vc_font.height; in bit_putcs()
146 image.height = vc->vc_font.height; in bit_putcs()
147 image.depth = 1; in bit_putcs()
161 image.width = vc->vc_font.width * cnt; in bit_putcs()
162 pitch = DIV_ROUND_UP(image.width, 8) + scan_align; in bit_putcs()
164 size = pitch * image.height + buf_align; in bit_putcs()
167 image.data = dst; in bit_putcs()
171 width, cellsize, &image, buf, dst); in bit_putcs()
174 pitch, width, cellsize, &image, in bit_putcs()
177 image.dx += cnt * vc->vc_font.width; in bit_putcs()
239 if (ops->cursor_state.image.data != src || in bit_cursor()
241 ops->cursor_state.image.data = src; in bit_cursor()
257 if (ops->cursor_state.image.fg_color != fg || in bit_cursor()
258 ops->cursor_state.image.bg_color != bg || in bit_cursor()
260 ops->cursor_state.image.fg_color = fg; in bit_cursor()
261 ops->cursor_state.image.bg_color = bg; in bit_cursor()
265 if ((ops->cursor_state.image.dx != (vc->vc_font.width * vc->state.x)) || in bit_cursor()
266 (ops->cursor_state.image.dy != (vc->vc_font.height * y)) || in bit_cursor()
268 ops->cursor_state.image.dx = vc->vc_font.width * vc->state.x; in bit_cursor()
269 ops->cursor_state.image.dy = vc->vc_font.height * y; in bit_cursor()
273 if (ops->cursor_state.image.height != vc->vc_font.height || in bit_cursor()
274 ops->cursor_state.image.width != vc->vc_font.width || in bit_cursor()
276 ops->cursor_state.image.height = vc->vc_font.height; in bit_cursor()
277 ops->cursor_state.image.width = vc->vc_font.width; in bit_cursor()
344 cursor.image.data = src; in bit_cursor()
345 cursor.image.fg_color = ops->cursor_state.image.fg_color; in bit_cursor()
346 cursor.image.bg_color = ops->cursor_state.image.bg_color; in bit_cursor()
347 cursor.image.dx = ops->cursor_state.image.dx; in bit_cursor()
348 cursor.image.dy = ops->cursor_state.image.dy; in bit_cursor()
349 cursor.image.height = ops->cursor_state.image.height; in bit_cursor()
350 cursor.image.width = ops->cursor_state.image.width; in bit_cursor()
355 cursor.image.depth = 1; in bit_cursor()