()
| 1019 | |
| 1020 | #[test] |
| 1021 | fn test_draw_tri_filled_no_sync() { |
| 1022 | Tester::new(size(20, 30)) |
| 1023 | .op(|l| { |
| 1024 | l.set_sync(false); |
| 1025 | l.set_draw_color((50, 51, 52)); |
| 1026 | l.draw_tri_filled(PixelsXY::new(4, 5), PixelsXY::new(8, 5), PixelsXY::new(6, 9)) |
| 1027 | .unwrap() |
| 1028 | }) |
| 1029 | .expect_damage(xy(4, 5), xy(8, 9)) |
| 1030 | .ignore_pixels() |
| 1031 | .check(); |
| 1032 | } |
| 1033 | |
| 1034 | #[test] |
| 1035 | fn test_draw_tri_filled_clip() { |
nothing calls this directly
no test coverage detected