(x1: f64, y1: f64, x2: f64, y2: f64, x3: f64, y3: f64, r: f64, g: f64, b: f64, a: f64)
| 787 | |
| 788 | #[no_mangle] |
| 789 | pub extern "C" fn bloom_draw_triangle(x1: f64, y1: f64, x2: f64, y2: f64, x3: f64, y3: f64, r: f64, g: f64, b: f64, a: f64) { |
| 790 | engine().renderer.draw_triangle(x1, y1, x2, y2, x3, y3, r, g, b, a); |
| 791 | } |
| 792 | |
| 793 | #[no_mangle] |
| 794 | pub extern "C" fn bloom_draw_poly(cx: f64, cy: f64, sides: f64, radius: f64, rotation: f64, r: f64, g: f64, b: f64, a: f64) { |
nothing calls this directly
no test coverage detected