(cx: f64, cy: f64, radius: f64, r: f64, g: f64, b: f64, a: f64)
| 545 | |
| 546 | #[no_mangle] |
| 547 | pub extern "C" fn bloom_draw_circle(cx: f64, cy: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) { |
| 548 | engine().renderer.draw_circle(cx, cy, radius, r, g, b, a); |
| 549 | } |
| 550 | |
| 551 | #[no_mangle] |
| 552 | pub extern "C" fn bloom_draw_circle_lines(cx: f64, cy: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) { |
nothing calls this directly
no test coverage detected