Lines Matching refs:image

86 				    struct fb_image *image, u8 *buf, u8 *dst)
111 info->fbops->fb_imageblit(info, image);
118 struct fb_image image;
133 image.fg_color = fg;
134 image.bg_color = bg;
135 image.dx = vxres - ((yy + 1) * vc->vc_font.height);
136 image.dy = xx * vc->vc_font.width;
137 image.width = vc->vc_font.height;
138 image.depth = 1;
152 image.height = vc->vc_font.width * cnt;
153 pitch = ((image.width + 7) >> 3) + scan_align;
155 size = pitch * image.height + buf_align;
158 image.data = dst;
160 width, cellsize, &image, buf, dst);
161 image.dy += image.height;
235 if (ops->cursor_state.image.data != src ||
237 ops->cursor_state.image.data = src;
253 if (ops->cursor_state.image.fg_color != fg ||
254 ops->cursor_state.image.bg_color != bg ||
256 ops->cursor_state.image.fg_color = fg;
257 ops->cursor_state.image.bg_color = bg;
261 if (ops->cursor_state.image.height != vc->vc_font.width ||
262 ops->cursor_state.image.width != vc->vc_font.height ||
264 ops->cursor_state.image.height = vc->vc_font.width;
265 ops->cursor_state.image.width = vc->vc_font.height;
272 if (ops->cursor_state.image.dx != dx ||
273 ops->cursor_state.image.dy != dy ||
275 ops->cursor_state.image.dx = dx;
276 ops->cursor_state.image.dy = dy;
354 cursor.image.data = src;
355 cursor.image.fg_color = ops->cursor_state.image.fg_color;
356 cursor.image.bg_color = ops->cursor_state.image.bg_color;
357 cursor.image.dx = ops->cursor_state.image.dx;
358 cursor.image.dy = ops->cursor_state.image.dy;
359 cursor.image.height = ops->cursor_state.image.height;
360 cursor.image.width = ops->cursor_state.image.width;
365 cursor.image.depth = 1;