(h: f64, tex: f64)
| 836 | } |
| 837 | #[no_mangle] |
| 838 | pub extern "C" fn bloom_scene_set_material_texture(h: f64, tex: f64) { |
| 839 | scene::set_texture(h as u32, tex as u32); |
| 840 | } |
| 841 | #[no_mangle] pub extern "C" fn bloom_scene_node_count() -> f64 { scene::node_count() as f64 } |
| 842 | |
| 843 | #[no_mangle] |
nothing calls this directly
no test coverage detected