Lines Matching refs:cursor
224 struct fb_cursor cursor; in bit_cursor() local
233 cursor.set = 0; in bit_cursor()
242 cursor.set |= FB_CUR_SETIMAGE; in bit_cursor()
262 cursor.set |= FB_CUR_SETCMAP; in bit_cursor()
270 cursor.set |= FB_CUR_SETPOS; in bit_cursor()
278 cursor.set |= FB_CUR_SETSIZE; in bit_cursor()
283 ops->cursor_state.hot.x = cursor.hot.y = 0; in bit_cursor()
284 cursor.set |= FB_CUR_SETHOT; in bit_cursor()
287 if (cursor.set & FB_CUR_SETSIZE || in bit_cursor()
302 cursor.set |= FB_CUR_SETSHAPE; in bit_cursor()
344 cursor.image.data = src; in bit_cursor()
345 cursor.image.fg_color = ops->cursor_state.image.fg_color; in bit_cursor()
346 cursor.image.bg_color = ops->cursor_state.image.bg_color; in bit_cursor()
347 cursor.image.dx = ops->cursor_state.image.dx; in bit_cursor()
348 cursor.image.dy = ops->cursor_state.image.dy; in bit_cursor()
349 cursor.image.height = ops->cursor_state.image.height; in bit_cursor()
350 cursor.image.width = ops->cursor_state.image.width; in bit_cursor()
351 cursor.hot.x = ops->cursor_state.hot.x; in bit_cursor()
352 cursor.hot.y = ops->cursor_state.hot.y; in bit_cursor()
353 cursor.mask = ops->cursor_state.mask; in bit_cursor()
354 cursor.enable = ops->cursor_state.enable; in bit_cursor()
355 cursor.image.depth = 1; in bit_cursor()
356 cursor.rop = ROP_XOR; in bit_cursor()
359 err = info->fbops->fb_cursor(info, &cursor); in bit_cursor()
362 soft_cursor(info, &cursor); in bit_cursor()
384 ops->cursor = bit_cursor; in fbcon_set_bitops()