(
&mut self,
x1y1: PixelsXY,
x2y2: PixelsXY,
x3y3: PixelsXY,
)
| 499 | } |
| 500 | |
| 501 | fn draw_tri_filled( |
| 502 | &mut self, |
| 503 | x1y1: PixelsXY, |
| 504 | x2y2: PixelsXY, |
| 505 | x3y3: PixelsXY, |
| 506 | ) -> io::Result<()> { |
| 507 | self.without_sync(|self2| drawing::draw_tri_filled(self2, x1y1, x2y2, x3y3)) |
| 508 | } |
| 509 | } |