- 精华
- 1
- 帖子
- 10092
- 威望
- 1 点
- 积分
- 10694 点
- 种子
- 741 点
- 注册时间
- 2015-9-16
- 最后登录
- 2025-9-7
|

楼主 |
发表于 2020-6-18 12:42 · 浙江
|
显示全部楼层
jklyoqw123 发表于 2020-6-18 12:26 
个人觉得意义不大,也许可以有效降低纹理存盘大小?应该可以弥补一下820G容量的问题
况且压缩也是要解压的 ...
Oodle Texture确切地讲并不是一种压缩方案,而是一种生成BCn文件的编码方案,最后压缩工作是其他软件来做的
你看一下整个流程图就知道了,它的主旨是在生成BCN compressed texture时,更容易被压缩软件进行压缩
RGB uncompressed source art content like BMP or PNG
| <- this step is where Oodle Texture RDO goes
V
BCN compressed texture
|
V
Kraken or zlib compression on the game package containing the BCN textures
| TOOLS ^
V
sent over network, stored on disk
| RUNTIME v
V
decompress Kraken or zlib to load (sometimes with hardware decompressor)
|
V
BCN compressed texture in memory
|
V
rendered on GPU
The main feature is RD-optimized BC1-7 compression. You use Oodle Texture as your BCn encoder, you get regular BCn data out, the result just happens to compress a lot better if you then hand it to Kraken, Zip, etc. Combines beautifully with hardware LZ decoders. |
|