Lines Matching refs:cursor
206 struct fb_cursor cursor; in cw_cursor() local
219 cursor.set = 0; in cw_cursor()
228 cursor.set |= FB_CUR_SETIMAGE; in cw_cursor()
248 cursor.set |= FB_CUR_SETCMAP; in cw_cursor()
256 cursor.set |= FB_CUR_SETSIZE; in cw_cursor()
267 cursor.set |= FB_CUR_SETPOS; in cw_cursor()
272 ops->cursor_state.hot.x = cursor.hot.y = 0; in cw_cursor()
273 cursor.set |= FB_CUR_SETHOT; in cw_cursor()
276 if (cursor.set & FB_CUR_SETSIZE || in cw_cursor()
299 cursor.set |= FB_CUR_SETSHAPE; in cw_cursor()
336 cursor.image.data = src; in cw_cursor()
337 cursor.image.fg_color = ops->cursor_state.image.fg_color; in cw_cursor()
338 cursor.image.bg_color = ops->cursor_state.image.bg_color; in cw_cursor()
339 cursor.image.dx = ops->cursor_state.image.dx; in cw_cursor()
340 cursor.image.dy = ops->cursor_state.image.dy; in cw_cursor()
341 cursor.image.height = ops->cursor_state.image.height; in cw_cursor()
342 cursor.image.width = ops->cursor_state.image.width; in cw_cursor()
343 cursor.hot.x = ops->cursor_state.hot.x; in cw_cursor()
344 cursor.hot.y = ops->cursor_state.hot.y; in cw_cursor()
345 cursor.mask = ops->cursor_state.mask; in cw_cursor()
346 cursor.enable = ops->cursor_state.enable; in cw_cursor()
347 cursor.image.depth = 1; in cw_cursor()
348 cursor.rop = ROP_XOR; in cw_cursor()
351 err = info->fbops->fb_cursor(info, &cursor); in cw_cursor()
354 soft_cursor(info, &cursor); in cw_cursor()
382 ops->cursor = cw_cursor; in fbcon_rotate_cw()