-
Does the LZX compression make games run slower or is the compression just slow? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
It has slower compression and decompression, since it's a more complex algorithm - whether this translates to making a game load more slowly really just depends on the game and your hardware, but it's probably best to either avoid it or test it yourself if performance is a concern. |
Beta Was this translation helpful? Give feedback.
-
As a general rule of thumb for improved performance, use: The why: The speed at which the cores can decompress data varies with hardware. (# of cores, frequency, L1 and 2 caches etc) (But IIRC that rule of thumb comes from the days when 4 core CPUs were the norm. Another thing to keep in mind is that Xpress4K wites (and reads) the data in 4K blocks, |
Beta Was this translation helpful? Give feedback.
It has slower compression and decompression, since it's a more complex algorithm - whether this translates to making a game load more slowly really just depends on the game and your hardware, but it's probably best to either avoid it or test it yourself if performance is a concern.