(x: f64, y: f64, w: f64, h: f64, r: f64, g: f64, b: f64, a: f64)
| 826 | |
| 827 | #[no_mangle] |
| 828 | pub extern "C" fn bloom_draw_rect(x: f64, y: f64, w: f64, h: f64, r: f64, g: f64, b: f64, a: f64) { |
| 829 | engine().renderer.draw_rect(x, y, w, h, r, g, b, a); |
| 830 | } |
| 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) { |
no test coverage detected