(cx: f64, cy: f64, radius: f64, r: f64, g: f64, b: f64, a: f64)
| 836 | |
| 837 | #[no_mangle] |
| 838 | pub extern "C" fn bloom_draw_circle(cx: f64, cy: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) { |
| 839 | engine().renderer.draw_circle(cx, cy, radius, r, g, b, a); |
| 840 | } |
| 841 | |
| 842 | #[no_mangle] |
| 843 | pub extern "C" fn bloom_draw_circle_lines(cx: f64, cy: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) { |
no test coverage detected