Lines Matching refs:cursor
225 struct fb_cursor cursor; in ccw_cursor() local
238 cursor.set = 0; in ccw_cursor()
256 cursor.set |= FB_CUR_SETIMAGE; in ccw_cursor()
276 cursor.set |= FB_CUR_SETCMAP; in ccw_cursor()
284 cursor.set |= FB_CUR_SETSIZE; in ccw_cursor()
295 cursor.set |= FB_CUR_SETPOS; in ccw_cursor()
300 ops->cursor_state.hot.x = cursor.hot.y = 0; in ccw_cursor()
301 cursor.set |= FB_CUR_SETHOT; in ccw_cursor()
304 if (cursor.set & FB_CUR_SETSIZE || in ccw_cursor()
326 cursor.set |= FB_CUR_SETSHAPE; in ccw_cursor()
372 cursor.image.data = src; in ccw_cursor()
373 cursor.image.fg_color = ops->cursor_state.image.fg_color; in ccw_cursor()
374 cursor.image.bg_color = ops->cursor_state.image.bg_color; in ccw_cursor()
375 cursor.image.dx = ops->cursor_state.image.dx; in ccw_cursor()
376 cursor.image.dy = ops->cursor_state.image.dy; in ccw_cursor()
377 cursor.image.height = ops->cursor_state.image.height; in ccw_cursor()
378 cursor.image.width = ops->cursor_state.image.width; in ccw_cursor()
379 cursor.hot.x = ops->cursor_state.hot.x; in ccw_cursor()
380 cursor.hot.y = ops->cursor_state.hot.y; in ccw_cursor()
381 cursor.mask = ops->cursor_state.mask; in ccw_cursor()
382 cursor.enable = ops->cursor_state.enable; in ccw_cursor()
383 cursor.image.depth = 1; in ccw_cursor()
384 cursor.rop = ROP_XOR; in ccw_cursor()
387 err = info->fbops->fb_cursor(info, &cursor); in ccw_cursor()
390 soft_cursor(info, &cursor); in ccw_cursor()
418 ops->cursor = ccw_cursor; in fbcon_rotate_ccw()