(&mut self, color: Color)
| 45 | |
| 46 | impl Renderer for DefaultRenderer { |
| 47 | fn clear(&mut self, color: Color) { |
| 48 | let size = self.get_platform_size(); |
| 49 | // TODO: Implement clear with color and size |
| 50 | let _ = (color, size); // Temporarily silence warnings |
| 51 | } |
| 52 | |
| 53 | fn begin_group(&mut self, style: &Style) { |
| 54 | let size = self.get_platform_size(); |
nothing calls this directly
no test coverage detected