(handle: f64)
| 1005 | |
| 1006 | #[no_mangle] |
| 1007 | pub extern "C" fn bloom_load_texture_from_image(handle: f64) -> f64 { |
| 1008 | let eng = engine(); |
| 1009 | let EngineState { ref mut textures, ref mut renderer, .. } = *eng; |
| 1010 | textures.load_texture_from_image(handle, renderer) |
| 1011 | } |
| 1012 | |
| 1013 | #[no_mangle] |
| 1014 | pub extern "C" fn bloom_gen_texture_mipmaps(_handle: f64) { |
nothing calls this directly
no test coverage detected