4/28/2010

OpenGL and DDS textures

While there is probably a direct mapping between DirectX and OpenGL texel formats. I took some time to try to find out which solutions exist to load DDS files for OpenGL. Alas, it seems that there's nothing publicly available that is fancy, or complete, or simple. Everyone seems to do the same work over and over again for their own use.

Problems ?

DirectX and OpenGL use different texture orientation conventions. OpenGL is fed with "bottom first" images, while DirectX eats "top first" images. This may lead to problems, and hopefully solutions, described by tfaure - flipping the images, even in their compressed forms. Does this work for BC7 textures ?

Sample code ?
  • a whole library, probably can be a source of inspiration, but is GPL : Gimp DDS Plugin
  • another library, source of possible inspiration, but LGPL : DevIL
Testing ?

Is there any DDS database or repository available for testing purpose ? It seems that there are texture packs available, but something simple to automate testing would be nice...