• Home
  • Raw
  • Download

Lines Matching refs:image

101 				    struct fb_image *image, u8 *buf, u8 *dst)  in ccw_putcs_aligned()  argument
126 info->fbops->fb_imageblit(info, image); in ccw_putcs_aligned()
133 struct fb_image image; in ccw_putcs() local
148 image.fg_color = fg; in ccw_putcs()
149 image.bg_color = bg; in ccw_putcs()
150 image.dx = yy * vc->vc_font.height; in ccw_putcs()
151 image.dy = vyres - ((xx + count) * vc->vc_font.width); in ccw_putcs()
152 image.width = vc->vc_font.height; in ccw_putcs()
153 image.depth = 1; in ccw_putcs()
169 image.height = vc->vc_font.width * cnt; in ccw_putcs()
170 pitch = ((image.width + 7) >> 3) + scan_align; in ccw_putcs()
172 size = pitch * image.height + buf_align; in ccw_putcs()
175 image.data = dst; in ccw_putcs()
177 width, cellsize, &image, buf, dst); in ccw_putcs()
178 image.dy += image.height; in ccw_putcs()
243 if (ops->cursor_state.image.data != src || in ccw_cursor()
245 ops->cursor_state.image.data = src; in ccw_cursor()
261 if (ops->cursor_state.image.fg_color != fg || in ccw_cursor()
262 ops->cursor_state.image.bg_color != bg || in ccw_cursor()
264 ops->cursor_state.image.fg_color = fg; in ccw_cursor()
265 ops->cursor_state.image.bg_color = bg; in ccw_cursor()
269 if (ops->cursor_state.image.height != vc->vc_font.width || in ccw_cursor()
270 ops->cursor_state.image.width != vc->vc_font.height || in ccw_cursor()
272 ops->cursor_state.image.height = vc->vc_font.width; in ccw_cursor()
273 ops->cursor_state.image.width = vc->vc_font.height; in ccw_cursor()
280 if (ops->cursor_state.image.dx != dx || in ccw_cursor()
281 ops->cursor_state.image.dy != dy || in ccw_cursor()
283 ops->cursor_state.image.dx = dx; in ccw_cursor()
284 ops->cursor_state.image.dy = dy; in ccw_cursor()
363 cursor.image.data = src; in ccw_cursor()
364 cursor.image.fg_color = ops->cursor_state.image.fg_color; in ccw_cursor()
365 cursor.image.bg_color = ops->cursor_state.image.bg_color; in ccw_cursor()
366 cursor.image.dx = ops->cursor_state.image.dx; in ccw_cursor()
367 cursor.image.dy = ops->cursor_state.image.dy; in ccw_cursor()
368 cursor.image.height = ops->cursor_state.image.height; in ccw_cursor()
369 cursor.image.width = ops->cursor_state.image.width; in ccw_cursor()
374 cursor.image.depth = 1; in ccw_cursor()