Lines Matching full:image
86 struct fb_image *image, u8 *buf, u8 *dst) in cw_putcs_aligned() argument
111 info->fbops->fb_imageblit(info, image); in cw_putcs_aligned()
118 struct fb_image image; in cw_putcs() local
133 image.fg_color = fg; in cw_putcs()
134 image.bg_color = bg; in cw_putcs()
135 image.dx = vxres - ((yy + 1) * vc->vc_font.height); in cw_putcs()
136 image.dy = xx * vc->vc_font.width; in cw_putcs()
137 image.width = vc->vc_font.height; in cw_putcs()
138 image.depth = 1; in cw_putcs()
152 image.height = vc->vc_font.width * cnt; in cw_putcs()
153 pitch = ((image.width + 7) >> 3) + scan_align; in cw_putcs()
155 size = pitch * image.height + buf_align; in cw_putcs()
158 image.data = dst; in cw_putcs()
160 width, cellsize, &image, buf, dst); in cw_putcs()
161 image.dy += image.height; in cw_putcs()
226 if (ops->cursor_state.image.data != src || in cw_cursor()
228 ops->cursor_state.image.data = src; in cw_cursor()
244 if (ops->cursor_state.image.fg_color != fg || in cw_cursor()
245 ops->cursor_state.image.bg_color != bg || in cw_cursor()
247 ops->cursor_state.image.fg_color = fg; in cw_cursor()
248 ops->cursor_state.image.bg_color = bg; in cw_cursor()
252 if (ops->cursor_state.image.height != vc->vc_font.width || in cw_cursor()
253 ops->cursor_state.image.width != vc->vc_font.height || in cw_cursor()
255 ops->cursor_state.image.height = vc->vc_font.width; in cw_cursor()
256 ops->cursor_state.image.width = vc->vc_font.height; in cw_cursor()
263 if (ops->cursor_state.image.dx != dx || in cw_cursor()
264 ops->cursor_state.image.dy != dy || in cw_cursor()
266 ops->cursor_state.image.dx = dx; in cw_cursor()
267 ops->cursor_state.image.dy = dy; in cw_cursor()
337 cursor.image.data = src; in cw_cursor()
338 cursor.image.fg_color = ops->cursor_state.image.fg_color; in cw_cursor()
339 cursor.image.bg_color = ops->cursor_state.image.bg_color; in cw_cursor()
340 cursor.image.dx = ops->cursor_state.image.dx; in cw_cursor()
341 cursor.image.dy = ops->cursor_state.image.dy; in cw_cursor()
342 cursor.image.height = ops->cursor_state.image.height; in cw_cursor()
343 cursor.image.width = ops->cursor_state.image.width; in cw_cursor()
348 cursor.image.depth = 1; in cw_cursor()