(window: &Window)
| 13 | |
| 14 | impl DefaultRenderer { |
| 15 | pub fn new(window: &Window) -> Self { |
| 16 | Self { |
| 17 | window: window.clone(), |
| 18 | frame_count: 0, |
| 19 | transform: Point::default(), |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | pub fn present(&mut self) { |
| 24 | // Implementation for presenting the frame |
nothing calls this directly
no outgoing calls
no test coverage detected