Jan Boon
Jan Boon
Same comment as in #701, if your minimum read size is the same as your block size, all file system traversals will read every single file in its entirety. You...
For tooling purposes, it'd also be practical to be able to generate a minimum size flash image in advance, and allow them to grow to whatever hardware they've been flashed...
Test ``` err = lfs_mount(&lfs, &cfg); lfs_unmount(&lfs); // fail without flag cfg.block_count += 1; err = lfs_mount(&lfs, &cfg); assert(err); // success with flag cfg.flags |= LFS_M_GROW; err = lfs_mount(&lfs, &cfg);...
I was wondering about these as well, but I decided to just disable the warnings on our branch. :( Other than that, with some small changes everything works fine. I...
Remaining warnings: - [ ] Bcj2Enc_Encode, Bcj2Enc - [x] static CPtrInfoBase NullPtrInfo, delete pinfo - [ ] void rz_init_des(), perm - [ ] CPropLocationUnpacked
Guessing wrong path standardization flag...
Up to 4 color channels, using one color mask texture with a mask in each channel.
KTX allows metadata to go with the texture for this https://github.com/ryzom/ryzomcore/issues/610
Possible to include the predefined palettes per texture as well in the metadata, to simplify configuration.
connection.cpp ln 973