Home
last modified time | relevance | path

Searched refs:yscroll (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/video/fbdev/core/
H A Dfbcon.c1284 y_break = p->vrows - p->yscroll; in __fbcon_clear()
1422 p->yscroll += count; in ywrap_up()
1423 if (p->yscroll >= p->vrows) /* Deal with wrap */ in ywrap_up()
1424 p->yscroll -= p->vrows; in ywrap_up()
1426 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_up()
1441 p->yscroll -= count; in ywrap_down()
1442 if (p->yscroll < 0) /* Deal with wrap */ in ywrap_down()
1443 p->yscroll += p->vrows; in ywrap_down()
1445 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_down()
1460 p->yscroll += count; in ypan_up()
[all …]
H A Dfbcon.h34 short yscroll; /* Hardware scrolling */ member
236 ypos += p->yscroll; in real_y()