(cx: f64, cy: f64, radius: f64, r: f64, g: f64, b: f64, a: f64)
| 403 | |
| 404 | #[no_mangle] |
| 405 | pub extern "C" fn bloom_draw_circle(cx: f64, cy: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) { |
| 406 | engine().renderer.draw_circle(cx, cy, radius, r, g, b, a); |
| 407 | } |
| 408 | |
| 409 | #[no_mangle] |
| 410 | 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