(&mut self, text: &str, style: &Style)
| 30 | fn end_group(&mut self) {} |
| 31 | |
| 32 | fn draw_text(&mut self, text: &str, style: &Style) { |
| 33 | self.last_text = Some(text.to_string()); |
| 34 | self.last_color = Some(style.color); |
| 35 | } |
| 36 | |
| 37 | fn translate(&mut self, _x: f32, _y: f32) {} |
| 38 | } |