Lines Matching refs:cursor
239 struct fb_cursor cursor; in bit_cursor() local
248 cursor.set = 0; in bit_cursor()
260 cursor.set |= FB_CUR_SETIMAGE; in bit_cursor()
280 cursor.set |= FB_CUR_SETCMAP; in bit_cursor()
288 cursor.set |= FB_CUR_SETPOS; in bit_cursor()
296 cursor.set |= FB_CUR_SETSIZE; in bit_cursor()
301 ops->cursor_state.hot.x = cursor.hot.y = 0; in bit_cursor()
302 cursor.set |= FB_CUR_SETHOT; in bit_cursor()
305 if (cursor.set & FB_CUR_SETSIZE || in bit_cursor()
320 cursor.set |= FB_CUR_SETSHAPE; in bit_cursor()
362 cursor.image.data = src; in bit_cursor()
363 cursor.image.fg_color = ops->cursor_state.image.fg_color; in bit_cursor()
364 cursor.image.bg_color = ops->cursor_state.image.bg_color; in bit_cursor()
365 cursor.image.dx = ops->cursor_state.image.dx; in bit_cursor()
366 cursor.image.dy = ops->cursor_state.image.dy; in bit_cursor()
367 cursor.image.height = ops->cursor_state.image.height; in bit_cursor()
368 cursor.image.width = ops->cursor_state.image.width; in bit_cursor()
369 cursor.hot.x = ops->cursor_state.hot.x; in bit_cursor()
370 cursor.hot.y = ops->cursor_state.hot.y; in bit_cursor()
371 cursor.mask = ops->cursor_state.mask; in bit_cursor()
372 cursor.enable = ops->cursor_state.enable; in bit_cursor()
373 cursor.image.depth = 1; in bit_cursor()
374 cursor.rop = ROP_XOR; in bit_cursor()
377 err = info->fbops->fb_cursor(info, &cursor); in bit_cursor()
380 soft_cursor(info, &cursor); in bit_cursor()
403 ops->cursor = bit_cursor; in fbcon_set_bitops()