(cx: f64, cy: f64, cz: f64, w: f64, d: f64, r: f64, g: f64, b: f64, a: f64)
| 530 | |
| 531 | #[wasm_bindgen] |
| 532 | pub fn bloom_draw_plane(cx: f64, cy: f64, cz: f64, w: f64, d: f64, r: f64, g: f64, b: f64, a: f64) { |
| 533 | engine().renderer.draw_plane(cx, cy, cz, w, d, r, g, b, a); |
| 534 | } |
| 535 | |
| 536 | #[wasm_bindgen] |
| 537 | pub fn bloom_draw_grid(slices: f64, spacing: f64) { |
nothing calls this directly
no test coverage detected