freebsd-ports/graphics/s2tc/pkg-descr
Stefan Eßer fb16dfecae Remove WWW entries moved into port Makefiles
Commit b7f05445c0 has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
2022-09-07 23:58:51 +02:00

12 lines
655 B
Text

S2TC's format specification is very easy to implement, so it is not hard to make
a working compressor or decompressor for it. It is based on Color Cell
Compression[1] from 1986, and decoding is done entirely using the methods from
there. Encoding is done using a search and refinement method that is derived
from the methods described in that paper.
This also makes this format a great platform for learning about texture
compression and how to tune a compressor for best quality.
S2TC is especially well suited for runtime (on-load) compression of textures, as
it is - in low quality settings - way faster than any other texture compressors
out there.