(path_ptr: *const u8)
| 2149 | |
| 2150 | #[no_mangle] |
| 2151 | pub extern "C" fn bloom_dump_shadow_map(path_ptr: *const u8) { |
| 2152 | let path = str_from_header(path_ptr).to_string(); |
| 2153 | engine().renderer.dump_shadow_map(&path); |
| 2154 | } |
| 2155 | |
| 2156 | // ============================================================ |
| 2157 | // Post-processing |
nothing calls this directly
no test coverage detected