Lines Matching refs:cursor
254 struct fb_cursor cursor; in ud_cursor() local
268 cursor.set = 0; in ud_cursor()
286 cursor.set |= FB_CUR_SETIMAGE; in ud_cursor()
306 cursor.set |= FB_CUR_SETCMAP; in ud_cursor()
314 cursor.set |= FB_CUR_SETSIZE; in ud_cursor()
325 cursor.set |= FB_CUR_SETPOS; in ud_cursor()
330 ops->cursor_state.hot.x = cursor.hot.y = 0; in ud_cursor()
331 cursor.set |= FB_CUR_SETHOT; in ud_cursor()
334 if (cursor.set & FB_CUR_SETSIZE || in ud_cursor()
349 cursor.set |= FB_CUR_SETSHAPE; in ud_cursor()
395 cursor.image.data = src; in ud_cursor()
396 cursor.image.fg_color = ops->cursor_state.image.fg_color; in ud_cursor()
397 cursor.image.bg_color = ops->cursor_state.image.bg_color; in ud_cursor()
398 cursor.image.dx = ops->cursor_state.image.dx; in ud_cursor()
399 cursor.image.dy = ops->cursor_state.image.dy; in ud_cursor()
400 cursor.image.height = ops->cursor_state.image.height; in ud_cursor()
401 cursor.image.width = ops->cursor_state.image.width; in ud_cursor()
402 cursor.hot.x = ops->cursor_state.hot.x; in ud_cursor()
403 cursor.hot.y = ops->cursor_state.hot.y; in ud_cursor()
404 cursor.mask = ops->cursor_state.mask; in ud_cursor()
405 cursor.enable = ops->cursor_state.enable; in ud_cursor()
406 cursor.image.depth = 1; in ud_cursor()
407 cursor.rop = ROP_XOR; in ud_cursor()
410 err = info->fbops->fb_cursor(info, &cursor); in ud_cursor()
413 soft_cursor(info, &cursor); in ud_cursor()
445 ops->cursor = ud_cursor; in fbcon_rotate_ud()