(x: f64, y: f64, w: f64, h: f64, thickness: f64, r: f64, g: f64, b: f64, a: f64)
| 831 | |
| 832 | #[no_mangle] |
| 833 | 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) { |
| 834 | engine().renderer.draw_rect_lines(x, y, w, h, thickness, r, g, b, a); |
| 835 | } |
| 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) { |
no test coverage detected