(x1: f64, y1: f64, x2: f64, y2: f64, x3: f64, y3: f64, r: f64, g: f64, b: f64, a: f64)
| 846 | |
| 847 | #[no_mangle] |
| 848 | 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) { |
| 849 | engine().renderer.draw_triangle(x1, y1, x2, y2, x3, y3, r, g, b, a); |
| 850 | } |
| 851 | |
| 852 | #[no_mangle] |
| 853 | 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) { |
no test coverage detected