(path_ptr: *const u8)
| 2800 | |
| 2801 | #[no_mangle] |
| 2802 | pub extern "C" fn bloom_dump_shadow_map(path_ptr: *const u8) { |
| 2803 | let path = str_from_header(path_ptr).to_string(); |
| 2804 | engine().renderer.dump_shadow_map(&path); |
| 2805 | } |
| 2806 | |
| 2807 | // ============================================================ |
| 2808 | // Post-processing |
nothing calls this directly
no test coverage detected