Warning: Undefined array key "HTTP_ACCEPT_LANGUAGE" in /home/clients/50536745d503cc9bd290722a231d5f8f/web/includes/o3_common.php on line 79

Deprecated: strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated in /home/clients/50536745d503cc9bd290722a231d5f8f/web/includes/o3_common.php on line 79
oZone3D.Net Tutorials - Normal Map Compression S3TC DXT5 swizzling ATI 3Dc GL_ATI_texture_compression_3dc OpenGL GLSL glCompressedTexImage2D




GeeXLab
Current version: 0.45.1
>GeeXLab homepage

FurMark
Current version: 1.30.0
>FurMark homepage

GPU Caps Viewer
Current version: 1.55.0.0
>GPU Caps Viewer homepage

GPU Shark
Current version: 0.26.0.0
>GPU Shark homepage


Blogs
>JeGX's HackLab

Geeks3D's Articles
>GPU Memory Speed Demystified

>Multi-Threading Programming Resources

>GeForce and Radeon OpenCL Overview

>How to Get your Multi-core CPU Busy at 100%

>How To Make a VGA Dummy Plug

>Night Vision Post Processing Filter

PhysX FluidMark
Current version: 1.5.4
>FluidMark homepage

TessMark
Current version: 0.3.0
>TessMark homepage

ShaderToyMark
Current version: 0.3.0
>ShaderToyMark homepage
>ShaderToyMark Scores

Demoniak3D
Current Version: 1.23.0
>Demoniak3D
>Download
>Libraries and Plugins
>Demos
>Online Help - Reference Guide
>Codes Samples
 
Normal Map Compression
Renormalization
Swizzled DXT5 - ATI 3Dc

By Jerome Guinot aka 'JeGX' - jegx [at] ozone3d (dot) net

Initial draft: March 11, 2006
Update: March 16, 2006


[ Index ]

Introduction | Page 2 | Page 3 | Page 4 | Conclusion

�Next Page



4 - ATI 3Dc

ATI tackled the problem of normal-maps compression and has developed a new format of compression to solve this thorny problem: the 3Dc format. For a more detailed explanation on how the information is coded in the 3Dc format, see the following paper: 3DcWhitePaper.pdf.

The 3Dc normal-map compression works only on the ATI Radeon X800 and higher graphics controllers.

At the OpenGL level, the 3Dc format is accessible via the GL_ATI_texture_compression_3dc extension:


Fig. 10 - The GL_ATI_texture_compression_3dc extension in HardwareInfos

A new internal format of pixel must be declared:

#define GL_COMPRESSED_LUMINANCE_ALPHA_3DC_ATI 0x8837.

Except that, nothing special, the 3Dc being an usual DDS file, the loading is done like the DXT5. The 3Dc format uses the following new FOUR_CC: ATI2.

That said, let us see in concrete terms what it would be like (since the time we hear about this format...). The principle of 3Dc format use is the same than the swizzled DXT5 format: from 2 coordinates x and y stored in the compressed texture, we re-calculate on fly the z coordinate in the shader:

//----- DDS file: reverse y texture coodinate.
vec2 uv = texCoord.xy;
uv.y *= -1.0;

vec3 bump;
bump.xy	= (texture2D(normalMap, uv).ra * 2.0) - 1.0;
bump.z = sqrt(1.0 - dot(bump.xy, bump.xy));

The compressed data in the DDS format are Y-reversed compared to the other file image formats, so we have to invert in the shader the Y coordinate:uv.y *= -1.0;.

Now, load the file bump_map_compressed_3Dc.xml into Hyperion:


Fig. 11 - Compression using ATI 3Dc

The result is eloquent: the quality of uncompressed normal-map with renormalization is back. Really classy!

Normal-maps with 3Dc compression can be created with the DXTViewer or with the following tool provided by ATI: The Compressonator. The compression is done using Compress / ATI 3Dc Compression menu and by selecting the ATI2 format:


Fig. 12 - ATI - The Compressonator




Update: March 16, 2006:

The swizzled-DXT5 (or DXT5-xGxR) can also be created with the ATI's Compressonator tool:


Fig. 13 - Compression using the DXT5-xGxR format

The pixel shader is the following:

//----- DDS file: reverse y texture coodinate.
vec2 uv = texCoord.xy;
uv.y *= -1.0;

vec3 bump;
bump.xy	= (texture2D(normalMap, uv).ag * 2.0) - 1.0;
bump.z = sqrt(1.0 - dot(bump.xy, bump.xy));

And the result, available in the bump_map_compressed_DXT5_xGxR.xml file is shown here:



Fig. 14 - Compressed bump map (DXT5-xGxR)

The interest of that format is that it is supported by any S3TC-complient graphics controller. But the better is coming. Indeed, the ATI's 3Dc format can be created using a second method:


Fig. 15 - Compression with the 3Dc ATI2N alternate xy swizzled format

And this format is really handy since it uses the same pixel shader than the swizzled-DXT5 xGxR format. That means that according to the hardware capabilities (3Dc support or not), we will be able to use the same pixel shader simplifying in passing the code management:

//----- DDS file: reverse y texture coodinate.
vec2 uv = texCoord.xy;
uv.y *= -1.0;

vec3 bump;
bump.xy	= (texture2D(normalMap, uv).ag * 2.0) - 1.0;
bump.z = sqrt(1.0 - dot(bump.xy, bump.xy));

For the details, see the bump_map_compressed_3Dc_ATI2N_XY_swizzle.xml file.







[ Index ]

Introduction | Page 2 | Page 3 | Page 4 | Conclusion

�Next Page





GeeXLab demos


GLSL - Mesh exploder


PhysX 3 cloth demo


Normal visualizer with GS


Compute Shaders test on Radeon


Raymarching in GLSL



Misc
>Texture DataPack #1
>Asus Silent Knight CPU Cooler
Page generated in 0.0035309791564941 seconds.