Lines Matching refs:cursor
86 struct fb_tilecursor cursor; in tile_cursor() local
89 cursor.sx = vc->state.x; in tile_cursor()
90 cursor.sy = vc->state.y; in tile_cursor()
91 cursor.mode = (mode == CM_ERASE || use_sw) ? 0 : 1; in tile_cursor()
92 cursor.fg = fg; in tile_cursor()
93 cursor.bg = bg; in tile_cursor()
97 cursor.shape = FB_TILE_CURSOR_NONE; in tile_cursor()
100 cursor.shape = FB_TILE_CURSOR_UNDERLINE; in tile_cursor()
103 cursor.shape = FB_TILE_CURSOR_LOWER_THIRD; in tile_cursor()
106 cursor.shape = FB_TILE_CURSOR_LOWER_HALF; in tile_cursor()
109 cursor.shape = FB_TILE_CURSOR_TWO_THIRDS; in tile_cursor()
113 cursor.shape = FB_TILE_CURSOR_BLOCK; in tile_cursor()
117 info->tileops->fb_tilecursor(info, &cursor); in tile_cursor()
141 ops->cursor = tile_cursor; in fbcon_set_tileops()