Lines Matching refs:cursor
224 struct fb_cursor cursor; in ccw_cursor() local
237 cursor.set = 0; in ccw_cursor()
255 cursor.set |= FB_CUR_SETIMAGE; in ccw_cursor()
275 cursor.set |= FB_CUR_SETCMAP; in ccw_cursor()
283 cursor.set |= FB_CUR_SETSIZE; in ccw_cursor()
294 cursor.set |= FB_CUR_SETPOS; in ccw_cursor()
299 ops->cursor_state.hot.x = cursor.hot.y = 0; in ccw_cursor()
300 cursor.set |= FB_CUR_SETHOT; in ccw_cursor()
303 if (cursor.set & FB_CUR_SETSIZE || in ccw_cursor()
325 cursor.set |= FB_CUR_SETSHAPE; in ccw_cursor()
371 cursor.image.data = src; in ccw_cursor()
372 cursor.image.fg_color = ops->cursor_state.image.fg_color; in ccw_cursor()
373 cursor.image.bg_color = ops->cursor_state.image.bg_color; in ccw_cursor()
374 cursor.image.dx = ops->cursor_state.image.dx; in ccw_cursor()
375 cursor.image.dy = ops->cursor_state.image.dy; in ccw_cursor()
376 cursor.image.height = ops->cursor_state.image.height; in ccw_cursor()
377 cursor.image.width = ops->cursor_state.image.width; in ccw_cursor()
378 cursor.hot.x = ops->cursor_state.hot.x; in ccw_cursor()
379 cursor.hot.y = ops->cursor_state.hot.y; in ccw_cursor()
380 cursor.mask = ops->cursor_state.mask; in ccw_cursor()
381 cursor.enable = ops->cursor_state.enable; in ccw_cursor()
382 cursor.image.depth = 1; in ccw_cursor()
383 cursor.rop = ROP_XOR; in ccw_cursor()
386 err = info->fbops->fb_cursor(info, &cursor); in ccw_cursor()
389 soft_cursor(info, &cursor); in ccw_cursor()
417 ops->cursor = ccw_cursor; in fbcon_rotate_ccw()