Lines Matching full:image

85 				    struct fb_image *image, u8 *buf, u8 *dst)  in cw_putcs_aligned()  argument
110 info->fbops->fb_imageblit(info, image); in cw_putcs_aligned()
117 struct fb_image image; in cw_putcs() local
132 image.fg_color = fg; in cw_putcs()
133 image.bg_color = bg; in cw_putcs()
134 image.dx = vxres - ((yy + 1) * vc->vc_font.height); in cw_putcs()
135 image.dy = xx * vc->vc_font.width; in cw_putcs()
136 image.width = vc->vc_font.height; in cw_putcs()
137 image.depth = 1; in cw_putcs()
151 image.height = vc->vc_font.width * cnt; in cw_putcs()
152 pitch = ((image.width + 7) >> 3) + scan_align; in cw_putcs()
154 size = pitch * image.height + buf_align; in cw_putcs()
157 image.data = dst; in cw_putcs()
159 width, cellsize, &image, buf, dst); in cw_putcs()
160 image.dy += image.height; in cw_putcs()
225 if (ops->cursor_state.image.data != src || in cw_cursor()
227 ops->cursor_state.image.data = src; in cw_cursor()
243 if (ops->cursor_state.image.fg_color != fg || in cw_cursor()
244 ops->cursor_state.image.bg_color != bg || in cw_cursor()
246 ops->cursor_state.image.fg_color = fg; in cw_cursor()
247 ops->cursor_state.image.bg_color = bg; in cw_cursor()
251 if (ops->cursor_state.image.height != vc->vc_font.width || in cw_cursor()
252 ops->cursor_state.image.width != vc->vc_font.height || in cw_cursor()
254 ops->cursor_state.image.height = vc->vc_font.width; in cw_cursor()
255 ops->cursor_state.image.width = vc->vc_font.height; in cw_cursor()
262 if (ops->cursor_state.image.dx != dx || in cw_cursor()
263 ops->cursor_state.image.dy != dy || in cw_cursor()
265 ops->cursor_state.image.dx = dx; in cw_cursor()
266 ops->cursor_state.image.dy = dy; in cw_cursor()
336 cursor.image.data = src; in cw_cursor()
337 cursor.image.fg_color = ops->cursor_state.image.fg_color; in cw_cursor()
338 cursor.image.bg_color = ops->cursor_state.image.bg_color; in cw_cursor()
339 cursor.image.dx = ops->cursor_state.image.dx; in cw_cursor()
340 cursor.image.dy = ops->cursor_state.image.dy; in cw_cursor()
341 cursor.image.height = ops->cursor_state.image.height; in cw_cursor()
342 cursor.image.width = ops->cursor_state.image.width; in cw_cursor()
347 cursor.image.depth = 1; in cw_cursor()