• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/console/

Lines Matching refs:image

80 				     struct fb_image *image, u8 *buf, u8 *dst)
97 image->height);
100 image->height);
105 info->fbops->fb_imageblit(info, image);
112 struct fb_image *image, u8 *buf,
131 image->height, shift_high,
139 info->fbops->fb_imageblit(info, image);
147 struct fb_image image;
157 image.fg_color = fg;
158 image.bg_color = bg;
159 image.dx = xx * vc->vc_font.width;
160 image.dy = yy * vc->vc_font.height;
161 image.height = vc->vc_font.height;
162 image.depth = 1;
176 image.width = vc->vc_font.width * cnt;
177 pitch = DIV_ROUND_UP(image.width, 8) + scan_align;
179 size = pitch * image.height + buf_align;
182 image.data = dst;
186 width, cellsize, &image, buf, dst);
189 pitch, width, cellsize, &image,
192 image.dx += cnt * vc->vc_font.width;
264 if (ops->cursor_state.image.data != src ||
266 ops->cursor_state.image.data = src;
282 if (ops->cursor_state.image.fg_color != fg ||
283 ops->cursor_state.image.bg_color != bg ||
285 ops->cursor_state.image.fg_color = fg;
286 ops->cursor_state.image.bg_color = bg;
290 if ((ops->cursor_state.image.dx != (vc->vc_font.width * vc->vc_x)) ||
291 (ops->cursor_state.image.dy != (vc->vc_font.height * y)) ||
293 ops->cursor_state.image.dx = vc->vc_font.width * vc->vc_x;
294 ops->cursor_state.image.dy = vc->vc_font.height * y;
298 if (ops->cursor_state.image.height != vc->vc_font.height ||
299 ops->cursor_state.image.width != vc->vc_font.width ||
301 ops->cursor_state.image.height = vc->vc_font.height;
302 ops->cursor_state.image.width = vc->vc_font.width;
369 cursor.image.data = src;
370 cursor.image.fg_color = ops->cursor_state.image.fg_color;
371 cursor.image.bg_color = ops->cursor_state.image.bg_color;
372 cursor.image.dx = ops->cursor_state.image.dx;
373 cursor.image.dy = ops->cursor_state.image.dy;
374 cursor.image.height = ops->cursor_state.image.height;
375 cursor.image.width = ops->cursor_state.image.width;
380 cursor.image.depth = 1;