| 578 | } |
| 579 | |
| 580 | void |
| 581 | gr_finish(void) |
| 582 | { |
| 583 | if (iflags.grmode) { |
| 584 | #ifdef SCREEN_VGA |
| 585 | if (iflags.usevga) { |
| 586 | vga_Finish(); |
| 587 | } else |
| 588 | #endif |
| 589 | #ifdef SCREEN_VESA |
| 590 | if (iflags.usevesa) { |
| 591 | vesa_Finish(); |
| 592 | } else |
| 593 | #endif |
| 594 | #ifdef SCREEN_8514 |
| 595 | if (iflags.use8514) { |
| 596 | v8514_Finish(); |
| 597 | } else |
| 598 | #endif |
| 599 | {} |
| 600 | } |
| 601 | } |
| 602 | |
| 603 | /* |
| 604 | * Screen output routines (these are heavily used). |
no test coverage detected