Lines Matching refs:cursor
253 struct fb_cursor cursor; in ud_cursor() local
267 cursor.set = 0; in ud_cursor()
276 cursor.set |= FB_CUR_SETIMAGE; in ud_cursor()
296 cursor.set |= FB_CUR_SETCMAP; in ud_cursor()
304 cursor.set |= FB_CUR_SETSIZE; in ud_cursor()
315 cursor.set |= FB_CUR_SETPOS; in ud_cursor()
320 ops->cursor_state.hot.x = cursor.hot.y = 0; in ud_cursor()
321 cursor.set |= FB_CUR_SETHOT; in ud_cursor()
324 if (cursor.set & FB_CUR_SETSIZE || in ud_cursor()
339 cursor.set |= FB_CUR_SETSHAPE; in ud_cursor()
376 cursor.image.data = src; in ud_cursor()
377 cursor.image.fg_color = ops->cursor_state.image.fg_color; in ud_cursor()
378 cursor.image.bg_color = ops->cursor_state.image.bg_color; in ud_cursor()
379 cursor.image.dx = ops->cursor_state.image.dx; in ud_cursor()
380 cursor.image.dy = ops->cursor_state.image.dy; in ud_cursor()
381 cursor.image.height = ops->cursor_state.image.height; in ud_cursor()
382 cursor.image.width = ops->cursor_state.image.width; in ud_cursor()
383 cursor.hot.x = ops->cursor_state.hot.x; in ud_cursor()
384 cursor.hot.y = ops->cursor_state.hot.y; in ud_cursor()
385 cursor.mask = ops->cursor_state.mask; in ud_cursor()
386 cursor.enable = ops->cursor_state.enable; in ud_cursor()
387 cursor.image.depth = 1; in ud_cursor()
388 cursor.rop = ROP_XOR; in ud_cursor()
391 err = info->fbops->fb_cursor(info, &cursor); in ud_cursor()
394 soft_cursor(info, &cursor); in ud_cursor()
426 ops->cursor = ud_cursor; in fbcon_rotate_ud()