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

Function bloom_load_render_texture

native/linux/src/lib.rs:2051–2053  ·  view source on GitHub ↗
(width: f64, height: f64)

Source from the content-addressed store, hash-verified

2049// Q1: Render texture FFI (stub — GPU implementation deferred).
2050#[no_mangle]
2051pub extern "C" fn bloom_load_render_texture(width: f64, height: f64) -> f64 {
2052 engine().textures.load_render_texture(width as u32, height as u32)
2053}
2054#[no_mangle]
2055pub extern "C" fn bloom_unload_render_texture(handle: f64) {
2056 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