(x: f64, y: f64, z: f64, radius: f64, r: f64, g: f64, b: f64, a: f64)
| 691 | } |
| 692 | #[no_mangle] |
| 693 | pub extern "C" fn bloom_draw_sphere(x: f64, y: f64, z: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) { |
| 694 | engine().renderer.draw_sphere(x, y, z, radius, r, g, b, a); |
| 695 | } |
| 696 | #[no_mangle] |
| 697 | pub extern "C" fn bloom_draw_sphere_wires(x: f64, y: f64, z: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) { |
| 698 | engine().renderer.draw_sphere_wires(x, y, z, radius, r, g, b, a); |
nothing calls this directly
no test coverage detected