Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/video/fbdev/core/
Dfbcon.c1302 y_break = p->vrows - p->yscroll; in fbcon_clear()
1451 p->yscroll += count; in ywrap_up()
1452 if (p->yscroll >= p->vrows) /* Deal with wrap */ in ywrap_up()
1453 p->yscroll -= p->vrows; in ywrap_up()
1455 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_up()
1470 p->yscroll -= count; in ywrap_down()
1471 if (p->yscroll < 0) /* Deal with wrap */ in ywrap_down()
1472 p->yscroll += p->vrows; in ywrap_down()
1474 ops->var.yoffset = p->yscroll * vc->vc_font.height; in ywrap_down()
1489 p->yscroll += count; in ypan_up()
[all …]
Dfbcon.h34 short yscroll; /* Hardware scrolling */ member
232 ypos += p->yscroll; in real_y()