(&mut self, xy: PixelsXY)
| 208 | } |
| 209 | |
| 210 | fn draw_pixel(&mut self, xy: PixelsXY) -> io::Result<()> { |
| 211 | self.call(Request::DrawPixel(xy)) |
| 212 | } |
| 213 | |
| 214 | fn draw_poly(&mut self, points: &[PixelsXY]) -> io::Result<()> { |
| 215 | self.call(Request::DrawPoly(points.to_vec())) |