Lines Matching refs:fb_info
97 fb_info.terminal.x = VGA_TEXT_COLS; in boot_vga_init()
98 fb_info.terminal.y = VGA_TEXT_ROWS; in boot_vga_init()
108 fb_info.cursor.visible = B_FALSE; in boot_vga_init()
120 if (fb_info.cursor.pos.x == 0 && fb_info.cursor.pos.y == 0) in boot_vga_init()
122 vga_setpos(fb_info.cursor.pos.y, fb_info.cursor.pos.x); in boot_vga_init()
149 if (fb_info.cursor.visible == visible) in vga_cursor_display()
202 x = fb_info.cursor.pos.x; in vga_eraseline()
203 y = fb_info.cursor.pos.y; in vga_eraseline()
213 x = fb_info.cursor.pos.x; in vga_shiftline()
214 y = fb_info.cursor.pos.y; in vga_shiftline()
252 if (row < fb_info.terminal.y - 1) in vga_drawc()
293 if (row >= fb_info.terminal.y) in vga_setpos()
294 row = fb_info.terminal.y - 1; in vga_setpos()
297 if (col >= fb_info.terminal.x) in vga_setpos()
298 col = fb_info.terminal.x - 1; in vga_setpos()
304 fb_info.cursor.pos.y = row; in vga_setpos()
305 fb_info.cursor.pos.x = col; in vga_setpos()