Lines Matching refs:cursor
239 struct fb_cursor cursor; in bit_cursor() local
248 cursor.set = 0; in bit_cursor()
257 cursor.set |= FB_CUR_SETIMAGE; in bit_cursor()
277 cursor.set |= FB_CUR_SETCMAP; in bit_cursor()
285 cursor.set |= FB_CUR_SETPOS; in bit_cursor()
293 cursor.set |= FB_CUR_SETSIZE; in bit_cursor()
298 ops->cursor_state.hot.x = cursor.hot.y = 0; in bit_cursor()
299 cursor.set |= FB_CUR_SETHOT; in bit_cursor()
302 if (cursor.set & FB_CUR_SETSIZE || in bit_cursor()
317 cursor.set |= FB_CUR_SETSHAPE; in bit_cursor()
359 cursor.image.data = src; in bit_cursor()
360 cursor.image.fg_color = ops->cursor_state.image.fg_color; in bit_cursor()
361 cursor.image.bg_color = ops->cursor_state.image.bg_color; in bit_cursor()
362 cursor.image.dx = ops->cursor_state.image.dx; in bit_cursor()
363 cursor.image.dy = ops->cursor_state.image.dy; in bit_cursor()
364 cursor.image.height = ops->cursor_state.image.height; in bit_cursor()
365 cursor.image.width = ops->cursor_state.image.width; in bit_cursor()
366 cursor.hot.x = ops->cursor_state.hot.x; in bit_cursor()
367 cursor.hot.y = ops->cursor_state.hot.y; in bit_cursor()
368 cursor.mask = ops->cursor_state.mask; in bit_cursor()
369 cursor.enable = ops->cursor_state.enable; in bit_cursor()
370 cursor.image.depth = 1; in bit_cursor()
371 cursor.rop = ROP_XOR; in bit_cursor()
374 err = info->fbops->fb_cursor(info, &cursor); in bit_cursor()
377 soft_cursor(info, &cursor); in bit_cursor()
400 ops->cursor = bit_cursor; in fbcon_set_bitops()