clear to end of screen */
| 582 | |
| 583 | /* clear to end of screen */ |
| 584 | void |
| 585 | vesa_cl_eos(int cy) |
| 586 | { |
| 587 | cl_end(); |
| 588 | if (cy < LI - 1) { |
| 589 | unsigned left = 0; |
| 590 | unsigned top = vesa_y_center + cy * vesa_char_height; |
| 591 | unsigned width = vesa_x_res; |
| 592 | unsigned height = (LI - 1 - cy) * vesa_char_height; |
| 593 | |
| 594 | vesa_FillRect(left, top, width, height, BACKGROUND_VESA_COLOR); |
| 595 | } |
| 596 | } |
| 597 | |
| 598 | void |
| 599 | vesa_term_end_screen(void) |
no test coverage detected