(cx: f64, cy: f64, sides: f64, radius: f64, rotation: f64, r: f64, g: f64, b: f64, a: f64)
| 792 | |
| 793 | #[no_mangle] |
| 794 | pub extern "C" fn bloom_draw_poly(cx: f64, cy: f64, sides: f64, radius: f64, rotation: f64, r: f64, g: f64, b: f64, a: f64) { |
| 795 | engine().renderer.draw_poly(cx, cy, sides, radius, rotation, r, g, b, a); |
| 796 | } |
| 797 | |
| 798 | #[no_mangle] |
| 799 | pub extern "C" fn bloom_draw_text(text_ptr: *const u8, x: f64, y: f64, size: f64, r: f64, g: f64, b: f64, a: f64) { |