(&self, window: &mut Window)
| 299 | } |
| 300 | |
| 301 | pub fn present(&self, window: &mut Window) { |
| 302 | window |
| 303 | .update_with_buffer(&self.buffer, self.width as usize, self.height as usize) |
| 304 | .unwrap(); |
| 305 | } |
| 306 | |
| 307 | pub fn draw_texture(&mut self, shift_x: u32, shift_y: u32, pic: &Picture) { |
| 308 | let mut scj = 0; |
no outgoing calls
no test coverage detected