S3 Texture Compression (S3TC) (sometimes also called DXTn or DXTC) is a group of related lossy texture compression algorithms originally developed by Iourcha et al. of S3 Graphics, Ltd.[1] for use in their Savage 3D computer graphics accelerator. The method of compression is strikingly similar to the previously published Color Cell Compression,[2] which is in turn an adaptation of Block Truncation Coding published in the late 1970s. Unlike some image compression algorithms (e.g. JPEG), S3TC's fixed-rate data compression coupled with the single memory access (cf. Color Cell Compression and some VQ-based schemes) made it well-suited for use in compressing textures in hardware-accelerated 3D computer graphics. Its subsequent inclusion in Microsoft's DirectX 6.0 and OpenGL 1.3 (via the GL_EXT_texture_compression_s3tc extension) led to widespread adoption of the technology among hardware and software makers. While S3 Graphics is no longer a competitor in the graphics accelerator market, license fees are still levied and collected for the use of S3TC technology, for example in game consoles and graphics cards. The patent-encumbered status of S3TC and its wide use in software, despite non-encumbered alternatives, have led to a de facto requirement for OpenGL drivers to support it and present a major obstacle[3] to open source implementations[citation needed].
In September 2011, Intel employee Ian Romanick mentioned that the S3TC patent had been marked as invalid in patent litigation between Apple and HTC,[4] the latter of which acquired S3 and all of their patents. If the patent does prove to be invalid, it would be a simple matter of enabling support for it in Mesa 3D, a popular open source OpenGL-compatible computer graphics library.[original research?] Currently, there is a work around for Mesa 3D to handle S3TC formats.
Contents |
There are five variations of the S3TC algorithm (named DXT1 through DXT5, referring to the FourCC code assigned by Microsoft to each format), each designed for specific types of image data. All convert a 4×4 block of pixels to a 64-bit or 128-bit quantity, resulting in compression ratios of 6:1 with 24-bit RGB input data or 4:1 with 32-bit RGBA input data. S3TC is a lossy compression algorithm, resulting in image quality degradation, an effect which is minimized by the ability to increase texture resolutions while maintaining the same memory requirements. Hand-drawn cartoon-like images do not compress well, nor do normal map data, both of which usually generate artifacts. ATI's 3Dc compression algorithm is a modification of DXT5 designed to overcome S3TC's shortcomings with regard to normal maps. id Software worked around the normalmap compression issues in Doom 3 by moving the red component into the alpha channel before compression and moving it back during rendering in the pixel shader.[5]
Like many modern image compression algorithms, S3TC only specifies the method used to decompress images, allowing implementers to design the compression algorithm to suit their specific needs, although the patent still covers compression algorithms. The nVidia GeForce 1 through to GeForce 4 cards also used 16-bit interpolation to render DXT1 textures, which resulted in banding when unpacking textures with color gradients. Again, this created an unfavorable impression of texture compression, not related to the fundamentals of the codec itself.
DXT1 (also known as Block Compression 1 or BC1) is the smallest variation of S3TC, storing 16 input pixels in 64 bits of output, consisting of two 16-bit RGB 5:6:5 color values and a 4x4 two bit lookup table.
If the first color value (Failed to parse (Missing texvc executable; please see math/README to configure.): c_0 ) is numerically greater than the second color value (Failed to parse (Missing texvc executable; please see math/README to configure.): c_1 ), then two other colors are calculated, such that Failed to parse (Missing texvc executable; please see math/README to configure.): c_2 = {2 \over 3} c_0 + {1 \over 3} c_1
and Failed to parse (Missing texvc executable; please see math/README to configure.): c_3 = {1 \over 3} c_0 + {2 \over 3} c_1
. This mode operates similarly to mode 0xC0 of the original Apple Video codec.[6]
Otherwise, if Failed to parse (Missing texvc executable; please see math/README to configure.): c_0 \le c_1 , then Failed to parse (Missing texvc executable; please see math/README to configure.): c_2 = {1 \over 2} c_0 + {1 \over 2} c_1
and Failed to parse (Missing texvc executable; please see math/README to configure.): c_3 is transparent black corresponding to a premultiplied alpha format.
The lookup table is then consulted to determine the color value for each pixel, with a value of 0 corresponding to Failed to parse (Missing texvc executable; please see math/README to configure.): c_0
and a value of 3 corresponding to Failed to parse (Missing texvc executable; please see math/README to configure.): c_3
. DXT1 does not store alpha data enabling higher compression ratios.
DXT2 and DXT3 (collectively also known as Block Compression 2 or BC2) converts 16 input pixels (corresponding to a 4x4 pixel block) into 128 bits of output, consisting of 64 bits of alpha channel data (4 bits for each pixel) followed by 64 bits of color data, encoded the same way as DXT1 (with the exception that the 4 color version of the DXT1 algorithm is always used instead of deciding which version to use based on the relative values of Failed to parse (Missing texvc executable; please see math/README to configure.): c_0
and Failed to parse (Missing texvc executable; please see math/README to configure.): c_1
).
In DXT2, the color data is interpreted as being premultiplied by alpha, in DXT3 it is interpreted as not having been premultiplied by alpha. Typically DXT2/3 are well suited to images with sharp alpha transitions, between translucent and opaque areas.
DXT4 and DXT5 (collectively also known as Block Compression 3 or BC3) converts 16 input pixels into 128 bits of output, consisting of 64 bits of alpha channel data (two 8 bit alpha values and a 4x4 3 bit lookup table) followed by 64 bits of color data (encoded the same way as DXT1).
If Failed to parse (Missing texvc executable; please see math/README to configure.): \alpha_0 > \alpha_1 , then six other alpha values are calculated, such that Failed to parse (Missing texvc executable; please see math/README to configure.): \alpha_2 = {{6\alpha_0 + 1\alpha_1} \over 7} , Failed to parse (Missing texvc executable; please see math/README to configure.): \alpha_3 = {{5\alpha_0 + 2\alpha_1} \over 7} , Failed to parse (Missing texvc executable; please see math/README to configure.): \alpha_4 = {{4\alpha_0 + 3\alpha_1} \over 7} , Failed to parse (Missing texvc executable; please see math/README to configure.): \alpha_5 = {{3\alpha_0 + 4\alpha_1} \over 7} , Failed to parse (Missing texvc executable; please see math/README to configure.): \alpha_6 = {{2\alpha_0 + 5\alpha_1} \over 7} , and Failed to parse (Missing texvc executable; please see math/README to configure.): \alpha_7 = {{1\alpha_0 + 6\alpha_1} \over 7} .
Otherwise, if Failed to parse (Missing texvc executable; please see math/README to configure.): \alpha_0 \le \alpha_1 , four other alpha values are calculated such that Failed to parse (Missing texvc executable; please see math/README to configure.): \alpha_2 = {{4\alpha_0 + 1\alpha_1} \over 5} , Failed to parse (Missing texvc executable; please see math/README to configure.): \alpha_3 = {{3\alpha_0 + 2\alpha_1} \over 5} , Failed to parse (Missing texvc executable; please see math/README to configure.): \alpha_4 = {{2\alpha_0 + 3\alpha_1} \over 5} , and Failed to parse (Missing texvc executable; please see math/README to configure.): \alpha_5 = {{1\alpha_0 + 4\alpha_1} \over 5}
with Failed to parse (Missing texvc executable; please see math/README to configure.): \alpha_6 = 0 and Failed to parse (Missing texvc executable; please see math/README to configure.): \alpha_7 = 255
.
The lookup table is then consulted to determine the alpha value for each pixel, with a value of 0 corresponding to Failed to parse (Missing texvc executable; please see math/README to configure.): \alpha_0
and a value of 7 corresponding to Failed to parse (Missing texvc executable; please see math/README to configure.): \alpha_7
. DXT4's color data is premultiplied by alpha, whereas DXT5's is not. Because DXT4/5 use an interpolated alpha scheme, they generally produce superior results for alpha (transparency) gradients than DXT2/3.
FOURCC | DX 10 Name | Description | Alpha premultiplied? | Compression ratio | Texture Type |
---|---|---|---|---|---|
DXT1 | BC1 | 1-bit Alpha / Opaque | N/A | 6:1(for 24 bit source image) | Simple non-alpha |
DXT2 | (none) | Explicit alpha | Yes | 4:1 | Sharp alpha |
DXT3 | BC2 | Explicit alpha | No | 4:1 | Sharp alpha |
DXT4 | (none) | Interpolated alpha | Yes | 4:1 | Gradient alpha |
DXT5 | BC3 | Interpolated alpha | No | 4:1 | Gradient alpha |
¿Que hora tienes?, pregunte para entablar conversacion
"Son cuarto para las dos", y cuando escuche su voz
asegure que existe Dios
"Pantorrillas de marfil", grito en la esquina un albañil
yo voltee para hacer frente al atrevido constructor
aunque admire su observacion
¿Te ayudo con los libros? y a quemarropa dijiste: "no"
¿Puedo acompañarte? y sin voltear otra vez, "no"
Y ante la ausencia de un buen comentario
te dije que me gustabas para nuera de mama
No hay mas vuelta de hoja aqui empieza una historia
te guste o no.
Tierna mariposa soy el mismo que hizo Dios
para hacerte feliz
Ahi volteaste y me dijiste "Tu estas loco, largate"
Siete cuadras te segui hasta que abordaste un autobus
El semaforo en la esquina fue el perfecto celestino
con el rojo de su luz
Subi por la puerta trasera y dije hola, otra vez
tu me sonreiste y el flechazo hirio esta vez
Y ante la ausencia de un buen comentario
te dije que me gustabas para cuñada de mi hermana
No hay mas vuelta de hoja aqui empieza una historia
te guste o no
Tierna mariposa soy el mismo que hizo Dios
para hacerte feliz
Ahi volteaste y me dijiste, "Tu estas loco, quedate"
No hay mas vuelta de hoja aqui empieza una historia
te guste o no
Tierna mariposa soy el mismo que hizo Dios