MCPcopy Create free account
hub / github.com/Bloom-Engine/engine / bloom_load_render_texture

Function bloom_load_render_texture

native/web/src/lib.rs:1987–1989  ·  view source on GitHub ↗
(width: f64, height: f64)

Source from the content-addressed store, hash-verified

1985// Q1: Render texture FFI (stub)
1986#[wasm_bindgen]
1987pub 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]
1991pub fn bloom_unload_render_texture(handle: f64) { engine().textures.unload_render_texture(handle); }
1992#[wasm_bindgen]

Callers

nothing calls this directly

Calls 2

load_render_textureMethod · 0.80
engineFunction · 0.70

Tested by

no test coverage detected