(width: f64, height: f64)
| 2049 | // Q1: Render texture FFI (stub — GPU implementation deferred). |
| 2050 | #[no_mangle] |
| 2051 | pub 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] |
| 2055 | pub extern "C" fn bloom_unload_render_texture(handle: f64) { |
| 2056 | engine().textures.unload_render_texture(handle); |
nothing calls this directly
no test coverage detected