(x: f64, y: f64, w: f64, h: f64, r: f64, g: f64, b: f64, a: f64)
| 535 | |
| 536 | #[no_mangle] |
| 537 | pub extern "C" fn bloom_draw_rect(x: f64, y: f64, w: f64, h: f64, r: f64, g: f64, b: f64, a: f64) { |
| 538 | engine().renderer.draw_rect(x, y, w, h, r, g, b, a); |
| 539 | } |
| 540 | |
| 541 | #[no_mangle] |
| 542 | 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) { |