Lines Matching refs:image
79 struct fb_image *image, u8 *buf, u8 *dst) in bit_putcs_aligned() argument
96 image->height); in bit_putcs_aligned()
99 image->height); in bit_putcs_aligned()
104 info->fbops->fb_imageblit(info, image); in bit_putcs_aligned()
111 struct fb_image *image, u8 *buf, in bit_putcs_unaligned() argument
130 image->height, shift_high, in bit_putcs_unaligned()
138 info->fbops->fb_imageblit(info, image); in bit_putcs_unaligned()
146 struct fb_image image; in bit_putcs() local
156 image.fg_color = fg; in bit_putcs()
157 image.bg_color = bg; in bit_putcs()
158 image.dx = xx * vc->vc_font.width; in bit_putcs()
159 image.dy = yy * vc->vc_font.height; in bit_putcs()
160 image.height = vc->vc_font.height; in bit_putcs()
161 image.depth = 1; in bit_putcs()
175 image.width = vc->vc_font.width * cnt; in bit_putcs()
176 pitch = ((image.width + 7) >> 3) + scan_align; in bit_putcs()
178 size = pitch * image.height + buf_align; in bit_putcs()
181 image.data = dst; in bit_putcs()
185 width, cellsize, &image, buf, dst); in bit_putcs()
188 pitch, width, cellsize, &image, in bit_putcs()
191 image.dx += cnt * vc->vc_font.width; in bit_putcs()
263 if (ops->cursor_state.image.data != src || in bit_cursor()
265 ops->cursor_state.image.data = src; in bit_cursor()
281 if (ops->cursor_state.image.fg_color != fg || in bit_cursor()
282 ops->cursor_state.image.bg_color != bg || in bit_cursor()
284 ops->cursor_state.image.fg_color = fg; in bit_cursor()
285 ops->cursor_state.image.bg_color = bg; in bit_cursor()
289 if ((ops->cursor_state.image.dx != (vc->vc_font.width * vc->vc_x)) || in bit_cursor()
290 (ops->cursor_state.image.dy != (vc->vc_font.height * y)) || in bit_cursor()
292 ops->cursor_state.image.dx = vc->vc_font.width * vc->vc_x; in bit_cursor()
293 ops->cursor_state.image.dy = vc->vc_font.height * y; in bit_cursor()
297 if (ops->cursor_state.image.height != vc->vc_font.height || in bit_cursor()
298 ops->cursor_state.image.width != vc->vc_font.width || in bit_cursor()
300 ops->cursor_state.image.height = vc->vc_font.height; in bit_cursor()
301 ops->cursor_state.image.width = vc->vc_font.width; in bit_cursor()
368 cursor.image.data = src; in bit_cursor()
369 cursor.image.fg_color = ops->cursor_state.image.fg_color; in bit_cursor()
370 cursor.image.bg_color = ops->cursor_state.image.bg_color; in bit_cursor()
371 cursor.image.dx = ops->cursor_state.image.dx; in bit_cursor()
372 cursor.image.dy = ops->cursor_state.image.dy; in bit_cursor()
373 cursor.image.height = ops->cursor_state.image.height; in bit_cursor()
374 cursor.image.width = ops->cursor_state.image.width; in bit_cursor()
379 cursor.image.depth = 1; in bit_cursor()