Lines Matching refs:cursor
207 struct fb_cursor cursor; in cw_cursor() local
220 cursor.set = 0; in cw_cursor()
238 cursor.set |= FB_CUR_SETIMAGE; in cw_cursor()
258 cursor.set |= FB_CUR_SETCMAP; in cw_cursor()
266 cursor.set |= FB_CUR_SETSIZE; in cw_cursor()
277 cursor.set |= FB_CUR_SETPOS; in cw_cursor()
282 ops->cursor_state.hot.x = cursor.hot.y = 0; in cw_cursor()
283 cursor.set |= FB_CUR_SETHOT; in cw_cursor()
286 if (cursor.set & FB_CUR_SETSIZE || in cw_cursor()
308 cursor.set |= FB_CUR_SETSHAPE; in cw_cursor()
354 cursor.image.data = src; in cw_cursor()
355 cursor.image.fg_color = ops->cursor_state.image.fg_color; in cw_cursor()
356 cursor.image.bg_color = ops->cursor_state.image.bg_color; in cw_cursor()
357 cursor.image.dx = ops->cursor_state.image.dx; in cw_cursor()
358 cursor.image.dy = ops->cursor_state.image.dy; in cw_cursor()
359 cursor.image.height = ops->cursor_state.image.height; in cw_cursor()
360 cursor.image.width = ops->cursor_state.image.width; in cw_cursor()
361 cursor.hot.x = ops->cursor_state.hot.x; in cw_cursor()
362 cursor.hot.y = ops->cursor_state.hot.y; in cw_cursor()
363 cursor.mask = ops->cursor_state.mask; in cw_cursor()
364 cursor.enable = ops->cursor_state.enable; in cw_cursor()
365 cursor.image.depth = 1; in cw_cursor()
366 cursor.rop = ROP_XOR; in cw_cursor()
369 err = info->fbops->fb_cursor(info, &cursor); in cw_cursor()
372 soft_cursor(info, &cursor); in cw_cursor()
400 ops->cursor = cw_cursor; in fbcon_rotate_cw()