• Joined on 2026-02-16
hugo commented on issue hugo/MetaCrate#41 2026-08-09 04:16:09 +00:00
Imaging: implement the optional Skia codec adapter

Implemented and pushed in commit 4849bbd.

Implementation:

  • Replaced all three generated SkiaTextureCodec shims with native Rust constructor, bounded stream decode, and SKBitmap-to-ManagedImage…
hugo pushed to main at hugo/MetaCrate 2026-08-09 04:14:01 +00:00
4849bbda7b Implement optional Skia codec adapter (#41)
hugo closed issue hugo/MetaCrate#40 2026-08-09 03:43:06 +00:00
Imaging: implement JPEG2000 codec adapter
hugo commented on issue hugo/MetaCrate#40 2026-08-09 03:42:58 +00:00
Imaging: implement JPEG2000 codec adapter

Implemented and pushed in commit 16501f2.

Implementation:

  • Added the opt-in jpeg2000 feature with a safe Rust codec API and a private, bounded OpenJPEG 2.5.4+ ABI adapter; default crates do…
hugo pushed to main at hugo/MetaCrate 2026-08-09 03:42:27 +00:00
16501f2331 Implement optional JPEG2000 codec adapter (#40)
hugo closed issue hugo/MetaCrate#39 2026-08-09 02:52:38 +00:00
Imaging: implement TGA and DDS compatibility
hugo commented on issue hugo/MetaCrate#39 2026-08-09 02:52:31 +00:00
Imaging: implement TGA and DDS compatibility

Implemented and pushed as 5d1573f.

Implementation:

  • Replaced all 3 Targa shims with bounded native Rust file/stream decoding and reference-compatible deterministic encoding, including the C#…
hugo pushed to main at hugo/MetaCrate 2026-08-09 02:51:49 +00:00
5d1573fc82 Implement native TGA and DDS compatibility (#39)
hugo closed issue hugo/MetaCrate#38 2026-08-09 02:11:27 +00:00
Imaging: implement ManagedImage and codec abstraction
hugo commented on issue hugo/MetaCrate#38 2026-08-09 02:11:21 +00:00
Imaging: implement ManagedImage and codec abstraction

Implemented and verified in commit 2c806d8. Replaced all Imaging.Abstractions shims with native Rust: an object-safe ITextureCodec boundary, flag-compatible channel type, and owned ManagedImage…

hugo pushed to main at hugo/MetaCrate 2026-08-09 02:11:11 +00:00
2c806d80ff Implement ManagedImage and codec abstraction (#38)
hugo closed issue hugo/MetaCrate#37 2026-08-09 01:52:12 +00:00
StructuredData: complete cross-format parity and parser hardening
hugo commented on issue hugo/MetaCrate#37 2026-08-09 01:52:05 +00:00
StructuredData: complete cross-format parity and parser hardening

Implemented and verified in commit d980692. Added cross-format coverage for every OSD variant with documented lossy and lossless boundaries; checked-in malformed corpora and bounded deterministic…

hugo pushed to main at hugo/MetaCrate 2026-08-09 01:51:37 +00:00
d980692933 Complete StructuredData parity and parser hardening (#37)
hugo closed issue hugo/MetaCrate#36 2026-08-09 01:31:31 +00:00
StructuredData: implement JSON and Protobuf OSD formats
hugo commented on issue hugo/MetaCrate#36 2026-08-09 01:31:25 +00:00
StructuredData: implement JSON and Protobuf OSD formats

Implemented in commit 6d02db8 (pushed to origin/main).

Implementation:

  • Added explicit native JSON token-to-OSD conversion for bool, numeric-width coercion, empty strings/null, arrays, maps, and…
hugo pushed to main at hugo/MetaCrate 2026-08-09 01:31:06 +00:00
6d02db8a9a Implement JSON and Protobuf OSD codecs
hugo closed issue hugo/MetaCrate#35 2026-08-09 01:09:25 +00:00
StructuredData: implement XML LLSD
hugo commented on issue hugo/MetaCrate#35 2026-08-09 01:08:46 +00:00
StructuredData: implement XML LLSD

Implemented in commit 84bc31d (pushed to origin/main).\n\nImplementation:\n- Added a native, dependency-free bounded XML LLSD codec for byte, stream, string, reader, inner-element, byte-output,…

hugo pushed to main at hugo/MetaCrate 2026-08-09 01:08:26 +00:00
84bc31d031 Implement bounded XML LLSD codec