(&self)
| 409 | type ID = (Vec<u8>, SizeInPixels); |
| 410 | |
| 411 | fn get_info(&self) -> RasterInfo { |
| 412 | RasterInfo { |
| 413 | size_chars: self.size_chars, |
| 414 | size_pixels: self.size_pixels, |
| 415 | glyph_size: self.font.glyph_size.into(), |
| 416 | } |
| 417 | } |
| 418 | |
| 419 | fn set_draw_color(&mut self, color: RGB) { |
| 420 | if self.draw_color != color { |