(width: f64, height: f64)
| 1985 | // Q1: Render texture FFI (stub) |
| 1986 | #[wasm_bindgen] |
| 1987 | pub fn bloom_load_render_texture(width: f64, height: f64) -> f64 { |
| 1988 | engine().textures.load_render_texture(width as u32, height as u32) |
| 1989 | } |
| 1990 | #[wasm_bindgen] |
| 1991 | pub fn bloom_unload_render_texture(handle: f64) { engine().textures.unload_render_texture(handle); } |
| 1992 | #[wasm_bindgen] |
nothing calls this directly
no test coverage detected