| 6 | use super::Renderer; |
| 7 | |
| 8 | pub struct DefaultRenderer { |
| 9 | window: Window, |
| 10 | frame_count: u64, |
| 11 | transform: Point, |
| 12 | } |
| 13 | |
| 14 | impl DefaultRenderer { |
| 15 | pub fn new(window: &Window) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected