(path_ptr: *const u8)
| 1832 | |
| 1833 | #[no_mangle] |
| 1834 | pub extern "C" fn bloom_dump_shadow_map(path_ptr: *const u8) { |
| 1835 | let path = str_from_header(path_ptr).to_string(); |
| 1836 | engine().renderer.dump_shadow_map(&path); |
| 1837 | } |
| 1838 | |
| 1839 | #[no_mangle] |
| 1840 | pub extern "C" fn bloom_enable_postfx() { |
nothing calls this directly
no test coverage detected