(source_ptr: *const u8)
| 1528 | |
| 1529 | #[no_mangle] |
| 1530 | pub extern "C" fn bloom_load_shader(source_ptr: *const u8) -> f64 { |
| 1531 | let source = str_from_header(source_ptr); |
| 1532 | engine().renderer.load_custom_shader(source) as f64 |
| 1533 | } |
| 1534 | |
| 1535 | // ============================================================ |
| 1536 | // Phase 1c — material system FFI |
nothing calls this directly
no test coverage detected