[go: nahoru, domu]

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

/drivers/video/console/
H A Dfbcon.c1265 y_break = p->vrows - p->yscroll;
1413 p->yscroll += count;
1414 if (p->yscroll >= p->vrows) /* Deal with wrap */
1415 p->yscroll -= p->vrows;
1417 ops->var.yoffset = p->yscroll * vc->vc_font.height;
1432 p->yscroll -= count;
1433 if (p->yscroll < 0) /* Deal with wrap */
1434 p->yscroll += p->vrows;
1436 ops->var.yoffset = p->yscroll * vc->vc_font.height;
1451 p->yscroll
[all...]
H A Dfbcon.h34 short yscroll; /* Hardware scrolling */ member in struct:display
230 ypos += p->yscroll;

Completed in 52 milliseconds