(path_ptr: *const u8)
| 2819 | |
| 2820 | #[no_mangle] |
| 2821 | pub extern "C" fn bloom_dump_shadow_map(path_ptr: *const u8) { |
| 2822 | let path = str_from_header(path_ptr).to_string(); |
| 2823 | engine().renderer.dump_shadow_map(&path); |
| 2824 | } |
| 2825 | |
| 2826 | #[no_mangle] |
| 2827 | pub extern "C" fn bloom_enable_postfx() { |
no test coverage detected