(cx: f64, cy: f64, cz: f64, w: f64, d: f64, r: f64, g: f64, b: f64, a: f64)
| 1996 | |
| 1997 | #[no_mangle] |
| 1998 | pub extern "C" fn bloom_draw_plane(cx: f64, cy: f64, cz: f64, w: f64, d: f64, r: f64, g: f64, b: f64, a: f64) { |
| 1999 | engine().renderer.draw_plane(cx, cy, cz, w, d, r, g, b, a); |
| 2000 | } |
| 2001 | |
| 2002 | #[no_mangle] |
| 2003 | pub extern "C" fn bloom_draw_grid(slices: f64, spacing: f64) { |
nothing calls this directly
no test coverage detected