| 7 | pub use default::DefaultRenderer; |
| 8 | |
| 9 | pub trait Renderer { |
| 10 | fn clear(&mut self, color: Color); |
| 11 | fn begin_group(&mut self, style: &Style); |
| 12 | fn end_group(&mut self); |
| 13 | fn draw_text(&mut self, text: &str, style: &Style); |
| 14 | fn translate(&mut self, x: f32, y: f32); |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected