Renders any buffered changes to the backing surface.
(&mut self)
| 377 | |
| 378 | /// Renders any buffered changes to the backing surface. |
| 379 | fn present_canvas(&mut self) -> io::Result<()> { |
| 380 | if self.sync_enabled { self.raster_ops.present_canvas() } else { Ok(()) } |
| 381 | } |
| 382 | |
| 383 | /// Draws the cursor at the current position and saves the previous contents of the screen so |
| 384 | /// that `clear_cursor` can restore them. |
no outgoing calls
no test coverage detected