(r: f64, g: f64, b: f64, a: f64)
| 195 | |
| 196 | #[wasm_bindgen] |
| 197 | pub fn bloom_clear_background(r: f64, g: f64, b: f64, a: f64) { |
| 198 | engine().renderer.set_clear_color(r, g, b, a); |
| 199 | } |
| 200 | |
| 201 | // ============================================================ |
| 202 | // Timing |
nothing calls this directly
no test coverage detected