• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/console/

Lines Matching refs:image

87 				    struct fb_image *image, u8 *buf, u8 *dst)
104 image->height);
107 image->height);
112 info->fbops->fb_imageblit(info, image);
119 struct fb_image *image, u8 *buf,
138 image->height, shift_high,
146 info->fbops->fb_imageblit(info, image);
154 struct fb_image image;
170 image.fg_color = fg;
171 image.bg_color = bg;
172 image.dy = vyres - ((yy * vc->vc_font.height) + vc->vc_font.height);
173 image.dx = vxres - ((xx + count) * vc->vc_font.width);
174 image.height = vc->vc_font.height;
175 image.depth = 1;
191 image.width = vc->vc_font.width * cnt;
192 pitch = ((image.width + 7) >> 3) + scan_align;
194 size = pitch * image.height + buf_align;
197 image.data = dst;
201 width, cellsize, &image, buf, dst);
204 width, cellsize, &image,
207 image.dx += image.width;
283 if (ops->cursor_state.image.data != src ||
285 ops->cursor_state.image.data = src;
301 if (ops->cursor_state.image.fg_color != fg ||
302 ops->cursor_state.image.bg_color != bg ||
304 ops->cursor_state.image.fg_color = fg;
305 ops->cursor_state.image.bg_color = bg;
309 if (ops->cursor_state.image.height != vc->vc_font.height ||
310 ops->cursor_state.image.width != vc->vc_font.width ||
312 ops->cursor_state.image.height = vc->vc_font.height;
313 ops->cursor_state.image.width = vc->vc_font.width;
320 if (ops->cursor_state.image.dx != dx ||
321 ops->cursor_state.image.dy != dy ||
323 ops->cursor_state.image.dx = dx;
324 ops->cursor_state.image.dy = dy;
395 cursor.image.data = src;
396 cursor.image.fg_color = ops->cursor_state.image.fg_color;
397 cursor.image.bg_color = ops->cursor_state.image.bg_color;
398 cursor.image.dx = ops->cursor_state.image.dx;
399 cursor.image.dy = ops->cursor_state.image.dy;
400 cursor.image.height = ops->cursor_state.image.height;
401 cursor.image.width = ops->cursor_state.image.width;
406 cursor.image.depth = 1;