• Home
  • Raw
  • Download

Lines Matching refs:image

100 				    struct fb_image *image, u8 *buf, u8 *dst)  in ccw_putcs_aligned()  argument
125 info->fbops->fb_imageblit(info, image); in ccw_putcs_aligned()
132 struct fb_image image; in ccw_putcs() local
147 image.fg_color = fg; in ccw_putcs()
148 image.bg_color = bg; in ccw_putcs()
149 image.dx = yy * vc->vc_font.height; in ccw_putcs()
150 image.dy = vyres - ((xx + count) * vc->vc_font.width); in ccw_putcs()
151 image.width = vc->vc_font.height; in ccw_putcs()
152 image.depth = 1; in ccw_putcs()
168 image.height = vc->vc_font.width * cnt; in ccw_putcs()
169 pitch = ((image.width + 7) >> 3) + scan_align; in ccw_putcs()
171 size = pitch * image.height + buf_align; in ccw_putcs()
174 image.data = dst; in ccw_putcs()
176 width, cellsize, &image, buf, dst); in ccw_putcs()
177 image.dy += image.height; in ccw_putcs()
252 if (ops->cursor_state.image.data != src || in ccw_cursor()
254 ops->cursor_state.image.data = src; in ccw_cursor()
270 if (ops->cursor_state.image.fg_color != fg || in ccw_cursor()
271 ops->cursor_state.image.bg_color != bg || in ccw_cursor()
273 ops->cursor_state.image.fg_color = fg; in ccw_cursor()
274 ops->cursor_state.image.bg_color = bg; in ccw_cursor()
278 if (ops->cursor_state.image.height != vc->vc_font.width || in ccw_cursor()
279 ops->cursor_state.image.width != vc->vc_font.height || in ccw_cursor()
281 ops->cursor_state.image.height = vc->vc_font.width; in ccw_cursor()
282 ops->cursor_state.image.width = vc->vc_font.height; in ccw_cursor()
289 if (ops->cursor_state.image.dx != dx || in ccw_cursor()
290 ops->cursor_state.image.dy != dy || in ccw_cursor()
292 ops->cursor_state.image.dx = dx; in ccw_cursor()
293 ops->cursor_state.image.dy = dy; in ccw_cursor()
371 cursor.image.data = src; in ccw_cursor()
372 cursor.image.fg_color = ops->cursor_state.image.fg_color; in ccw_cursor()
373 cursor.image.bg_color = ops->cursor_state.image.bg_color; in ccw_cursor()
374 cursor.image.dx = ops->cursor_state.image.dx; in ccw_cursor()
375 cursor.image.dy = ops->cursor_state.image.dy; in ccw_cursor()
376 cursor.image.height = ops->cursor_state.image.height; in ccw_cursor()
377 cursor.image.width = ops->cursor_state.image.width; in ccw_cursor()
382 cursor.image.depth = 1; in ccw_cursor()