(cx: f64, cy: f64, cz: f64, radius: f64, r: f64, g: f64, b: f64, a: f64)
| 1073 | |
| 1074 | #[no_mangle] |
| 1075 | pub extern "C" fn bloom_draw_sphere(cx: f64, cy: f64, cz: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) { |
| 1076 | engine().renderer.draw_sphere(cx, cy, cz, radius, r, g, b, a); |
| 1077 | } |
| 1078 | |
| 1079 | #[no_mangle] |
| 1080 | pub extern "C" fn bloom_draw_sphere_wires(cx: f64, cy: f64, cz: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) { |
no test coverage detected