Lines Matching refs:cursor
238 struct fb_cursor cursor; in bit_cursor() local
247 cursor.set = 0; in bit_cursor()
259 cursor.set |= FB_CUR_SETIMAGE; in bit_cursor()
279 cursor.set |= FB_CUR_SETCMAP; in bit_cursor()
287 cursor.set |= FB_CUR_SETPOS; in bit_cursor()
295 cursor.set |= FB_CUR_SETSIZE; in bit_cursor()
300 ops->cursor_state.hot.x = cursor.hot.y = 0; in bit_cursor()
301 cursor.set |= FB_CUR_SETHOT; in bit_cursor()
304 if (cursor.set & FB_CUR_SETSIZE || in bit_cursor()
319 cursor.set |= FB_CUR_SETSHAPE; in bit_cursor()
352 cursor.image.data = src; in bit_cursor()
353 cursor.image.fg_color = ops->cursor_state.image.fg_color; in bit_cursor()
354 cursor.image.bg_color = ops->cursor_state.image.bg_color; in bit_cursor()
355 cursor.image.dx = ops->cursor_state.image.dx; in bit_cursor()
356 cursor.image.dy = ops->cursor_state.image.dy; in bit_cursor()
357 cursor.image.height = ops->cursor_state.image.height; in bit_cursor()
358 cursor.image.width = ops->cursor_state.image.width; in bit_cursor()
359 cursor.hot.x = ops->cursor_state.hot.x; in bit_cursor()
360 cursor.hot.y = ops->cursor_state.hot.y; in bit_cursor()
361 cursor.mask = ops->cursor_state.mask; in bit_cursor()
362 cursor.enable = ops->cursor_state.enable; in bit_cursor()
363 cursor.image.depth = 1; in bit_cursor()
364 cursor.rop = ROP_XOR; in bit_cursor()
367 err = info->fbops->fb_cursor(info, &cursor); in bit_cursor()
370 soft_cursor(info, &cursor); in bit_cursor()
393 ops->cursor = bit_cursor; in fbcon_set_bitops()