Function
bloom_scene_set_material_pbr
(h: f64, roughness: f64, metalness: f64)
Source from the content-addressed store, hash-verified
| 832 | } |
| 833 | #[no_mangle] |
| 834 | pub extern "C" fn bloom_scene_set_material_pbr(h: f64, roughness: f64, metalness: f64) { |
| 835 | scene::set_pbr(h as u32, roughness as f32, metalness as f32); |
| 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); |
Callers
nothing calls this directly
Tested by
no test coverage detected