(handle: f64)
| 963 | |
| 964 | #[no_mangle] |
| 965 | pub extern "C" fn bloom_get_texture_width(handle: f64) -> f64 { |
| 966 | engine().textures.get(handle).map(|t| t.width as f64).unwrap_or(0.0) |
| 967 | } |
| 968 | |
| 969 | #[no_mangle] |
| 970 | pub extern "C" fn bloom_get_texture_height(handle: f64) -> f64 { |
no test coverage detected