()
| 1006 | |
| 1007 | #[test] |
| 1008 | fn test_draw_tri_no_sync() { |
| 1009 | Tester::new(size(20, 30)) |
| 1010 | .op(|l| { |
| 1011 | l.set_sync(false); |
| 1012 | l.set_draw_color((50, 51, 52)); |
| 1013 | l.draw_tri(PixelsXY::new(4, 5), PixelsXY::new(8, 5), PixelsXY::new(6, 9)).unwrap() |
| 1014 | }) |
| 1015 | .expect_damage(xy(4, 5), xy(8, 9)) |
| 1016 | .ignore_pixels() |
| 1017 | .check(); |
| 1018 | } |
| 1019 | |
| 1020 | #[test] |
| 1021 | fn test_draw_tri_filled_no_sync() { |
nothing calls this directly
no test coverage detected