MCPcopy Create free account
hub / github.com/Bloom-Engine/engine / bloom_watchos_set_bundle_path

Function bloom_watchos_set_bundle_path

native/watchos/src/lib.rs:184–190  ·  view source on GitHub ↗
(path: *const c_char)

Source from the content-addressed store, hash-verified

182
183#[no_mangle]
184pub extern "C" fn bloom_watchos_set_bundle_path(path: *const c_char) {
185 if path.is_null() { return; }
186 let s = unsafe { std::ffi::CStr::from_ptr(path) };
187 if let Ok(str) = s.to_str() {
188 textures::set_bundle_path(str);
189 }
190}
191
192// Draw-list snapshot accessors for Swift Canvas.
193

Callers

nothing calls this directly

Calls 1

set_bundle_pathFunction · 0.85

Tested by

no test coverage detected