Lines Matching refs:cursor
70 struct fb_tilecursor cursor; in tile_cursor() local
73 cursor.sx = vc->state.x; in tile_cursor()
74 cursor.sy = vc->state.y; in tile_cursor()
75 cursor.mode = (mode == CM_ERASE || use_sw) ? 0 : 1; in tile_cursor()
76 cursor.fg = fg; in tile_cursor()
77 cursor.bg = bg; in tile_cursor()
81 cursor.shape = FB_TILE_CURSOR_NONE; in tile_cursor()
84 cursor.shape = FB_TILE_CURSOR_UNDERLINE; in tile_cursor()
87 cursor.shape = FB_TILE_CURSOR_LOWER_THIRD; in tile_cursor()
90 cursor.shape = FB_TILE_CURSOR_LOWER_HALF; in tile_cursor()
93 cursor.shape = FB_TILE_CURSOR_TWO_THIRDS; in tile_cursor()
97 cursor.shape = FB_TILE_CURSOR_BLOCK; in tile_cursor()
101 info->tileops->fb_tilecursor(info, &cursor); in tile_cursor()
124 ops->cursor = tile_cursor; in fbcon_set_tileops()