MCPcopy Create free account
hub / github.com/crownengine/crown / stream_destination_path

Function stream_destination_path

src/resource/resource_id.cpp:30–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28}
29
30void stream_destination_path(DynamicString &path, ResourceId id)
31{
32 TempAllocator128 ta;
33 DynamicString id_hex(ta);
34 id_hex.from_string_id(id);
35 id_hex += ".stream";
36 path::join(path, CROWN_DATA_DIRECTORY, id_hex.c_str());
37}
38
39} // namespace crown

Callers 3

open_streamMethod · 0.85
compileFunction · 0.85
compile_internalMethod · 0.85

Calls 3

from_string_idMethod · 0.80
joinFunction · 0.50
c_strMethod · 0.45

Tested by

no test coverage detected