Lines Matching refs:cursor
240 struct fb_cursor cursor; in bit_cursor() local
249 cursor.set = 0; in bit_cursor()
267 cursor.set |= FB_CUR_SETIMAGE; in bit_cursor()
287 cursor.set |= FB_CUR_SETCMAP; in bit_cursor()
295 cursor.set |= FB_CUR_SETPOS; in bit_cursor()
303 cursor.set |= FB_CUR_SETSIZE; in bit_cursor()
308 ops->cursor_state.hot.x = cursor.hot.y = 0; in bit_cursor()
309 cursor.set |= FB_CUR_SETHOT; in bit_cursor()
312 if (cursor.set & FB_CUR_SETSIZE || in bit_cursor()
327 cursor.set |= FB_CUR_SETSHAPE; in bit_cursor()
369 cursor.image.data = src; in bit_cursor()
370 cursor.image.fg_color = ops->cursor_state.image.fg_color; in bit_cursor()
371 cursor.image.bg_color = ops->cursor_state.image.bg_color; in bit_cursor()
372 cursor.image.dx = ops->cursor_state.image.dx; in bit_cursor()
373 cursor.image.dy = ops->cursor_state.image.dy; in bit_cursor()
374 cursor.image.height = ops->cursor_state.image.height; in bit_cursor()
375 cursor.image.width = ops->cursor_state.image.width; in bit_cursor()
376 cursor.hot.x = ops->cursor_state.hot.x; in bit_cursor()
377 cursor.hot.y = ops->cursor_state.hot.y; in bit_cursor()
378 cursor.mask = ops->cursor_state.mask; in bit_cursor()
379 cursor.enable = ops->cursor_state.enable; in bit_cursor()
380 cursor.image.depth = 1; in bit_cursor()
381 cursor.rop = ROP_XOR; in bit_cursor()
384 err = info->fbops->fb_cursor(info, &cursor); in bit_cursor()
387 soft_cursor(info, &cursor); in bit_cursor()
410 ops->cursor = bit_cursor; in fbcon_set_bitops()