clear to end of line */
| 569 | |
| 570 | /* clear to end of line */ |
| 571 | void |
| 572 | vesa_cl_end(int col, int row) |
| 573 | { |
| 574 | unsigned left = vesa_x_center + col * vesa_char_width; |
| 575 | unsigned top = vesa_y_center + row * vesa_char_height; |
| 576 | unsigned width = (CO - 1 - col) * vesa_char_width; |
| 577 | unsigned height = vesa_char_height; |
| 578 | |
| 579 | vesa_flush_text(); |
| 580 | vesa_FillRect(left, top, width, height, BACKGROUND_VESA_COLOR); |
| 581 | } |
| 582 | |
| 583 | /* clear to end of screen */ |
| 584 | void |
no test coverage detected