Implement native asset pipeline and cache (#64)
Some checks failed
Native code generation / deterministic (push) Failing after 2m18s
Imaging and meshing gate / native (push) Failing after 1m30s
JPEG 2000 feature / linux (push) Successful in 2m40s
Native Rust workspace compile / compile (push) Failing after 57s
Skia feature / linux (push) Successful in 31m8s

This commit is contained in:
2026-08-10 07:51:17 +00:00
parent d5c318d280
commit 52f62d8c39
23 changed files with 4511 additions and 1620 deletions

View File

@@ -7,6 +7,10 @@ mod attention_catalog;
mod agent_manager;
mod agent_messages;
mod agent_movement;
mod asset_cache;
mod asset_manager;
mod asset_material;
mod asset_models;
mod bit_pack;
mod caps;
mod caps_http;
@@ -27,6 +31,7 @@ mod login;
mod message_codec;
mod message_decoder;
mod network_manager;
mod object_material;
#[rustfmt::skip]
pub mod packet_catalog;
mod packet_wire;
@@ -35,6 +40,7 @@ mod skeleton;
#[rustfmt::skip] // Deterministic machine output is formatted by the pinned generator.
mod skeleton_catalog;
mod targa;
mod transfers;
mod udp_transport;
#[rustfmt::skip] // Deterministic machine output is formatted by the pinned generator.
mod visual_catalog;
@@ -44,6 +50,8 @@ mod appearance_baker_semantics;
#[cfg(test)]
mod asset_archive_semantics;
#[cfg(test)]
mod asset_pipeline_semantics;
#[cfg(test)]
mod avatar_animesh_semantics;
#[cfg(test)]
mod batch_link_internal_semantics;