The check for iflags.grmode is made BEFORE calling these. */
| 743 | |
| 744 | /* The check for iflags.grmode is made BEFORE calling these. */ |
| 745 | void |
| 746 | DrawCursor(void) |
| 747 | { |
| 748 | #ifdef SCREEN_VGA |
| 749 | if (iflags.usevga) |
| 750 | vga_DrawCursor(); |
| 751 | #endif |
| 752 | #ifdef SCREEN_VESA |
| 753 | if (iflags.usevesa) |
| 754 | vesa_DrawCursor(); |
| 755 | #endif |
| 756 | } |
| 757 | |
| 758 | void |
| 759 | HideCursor(void) |
no test coverage detected