(x: f64, y: f64, w: f64, h: f64, thickness: f64, r: f64, g: f64, b: f64, a: f64)
| 772 | |
| 773 | #[no_mangle] |
| 774 | pub extern "C" fn bloom_draw_rect_lines(x: f64, y: f64, w: f64, h: f64, thickness: f64, r: f64, g: f64, b: f64, a: f64) { |
| 775 | engine().renderer.draw_rect_lines(x, y, w, h, thickness, r, g, b, a); |
| 776 | } |
| 777 | |
| 778 | #[no_mangle] |
| 779 | pub extern "C" fn bloom_draw_circle(cx: f64, cy: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) { |
nothing calls this directly
no test coverage detected