Lines Matching refs:cursor
223 struct fb_cursor cursor; in ccw_cursor() local
236 cursor.set = 0; in ccw_cursor()
245 cursor.set |= FB_CUR_SETIMAGE; in ccw_cursor()
265 cursor.set |= FB_CUR_SETCMAP; in ccw_cursor()
273 cursor.set |= FB_CUR_SETSIZE; in ccw_cursor()
284 cursor.set |= FB_CUR_SETPOS; in ccw_cursor()
289 ops->cursor_state.hot.x = cursor.hot.y = 0; in ccw_cursor()
290 cursor.set |= FB_CUR_SETHOT; in ccw_cursor()
293 if (cursor.set & FB_CUR_SETSIZE || in ccw_cursor()
316 cursor.set |= FB_CUR_SETSHAPE; in ccw_cursor()
353 cursor.image.data = src; in ccw_cursor()
354 cursor.image.fg_color = ops->cursor_state.image.fg_color; in ccw_cursor()
355 cursor.image.bg_color = ops->cursor_state.image.bg_color; in ccw_cursor()
356 cursor.image.dx = ops->cursor_state.image.dx; in ccw_cursor()
357 cursor.image.dy = ops->cursor_state.image.dy; in ccw_cursor()
358 cursor.image.height = ops->cursor_state.image.height; in ccw_cursor()
359 cursor.image.width = ops->cursor_state.image.width; in ccw_cursor()
360 cursor.hot.x = ops->cursor_state.hot.x; in ccw_cursor()
361 cursor.hot.y = ops->cursor_state.hot.y; in ccw_cursor()
362 cursor.mask = ops->cursor_state.mask; in ccw_cursor()
363 cursor.enable = ops->cursor_state.enable; in ccw_cursor()
364 cursor.image.depth = 1; in ccw_cursor()
365 cursor.rop = ROP_XOR; in ccw_cursor()
368 err = info->fbops->fb_cursor(info, &cursor); in ccw_cursor()
371 soft_cursor(info, &cursor); in ccw_cursor()
399 ops->cursor = ccw_cursor; in fbcon_rotate_ccw()