(x: f64, y: f64, z: f64, radius: f64, r: f64, g: f64, b: f64, a: f64)
| 1075 | } |
| 1076 | #[no_mangle] |
| 1077 | pub extern "C" fn bloom_draw_sphere(x: f64, y: f64, z: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) { |
| 1078 | engine().renderer.draw_sphere(x, y, z, radius, r, g, b, a); |
| 1079 | } |
| 1080 | #[no_mangle] |
| 1081 | pub extern "C" fn bloom_draw_sphere_wires(x: f64, y: f64, z: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) { |
| 1082 | engine().renderer.draw_sphere_wires(x, y, z, radius, r, g, b, a); |
nothing calls this directly
no test coverage detected