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

Function bloom_load_render_texture

native/windows/src/lib.rs:2077–2079  ·  view source on GitHub ↗
(width: f64, height: f64)

Source from the content-addressed store, hash-verified

2075// Render texture FFI (stub — GPU implementation deferred).
2076#[no_mangle]
2077pub extern "C" fn bloom_load_render_texture(width: f64, height: f64) -> f64 {
2078 engine().textures.load_render_texture(width as u32, height as u32)
2079}
2080#[no_mangle]
2081pub extern "C" fn bloom_unload_render_texture(handle: f64) {
2082 engine().textures.unload_render_texture(handle);

Callers

nothing calls this directly

Calls 2

load_render_textureMethod · 0.80
engineFunction · 0.70

Tested by

no test coverage detected