* Use offscreen drawing - lock the pixels through use_port */
| 439 | * Use offscreen drawing - lock the pixels through use_port |
| 440 | */ |
| 441 | static void |
| 442 | select_offscreen_port(tty_record *record) |
| 443 | { |
| 444 | if (record->uses_gworld) { |
| 445 | use_port(record, record->offscreen_world); |
| 446 | } else { |
| 447 | use_port(record, record->offscreen_port); |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | /* |
| 452 | * Use the window - unlock pixels |
no test coverage detected