Login  Register

Re: Cubemap in a single DDS-File

Posted by Melvin on May 25, 2010; 9:54pm
URL: https://forum.jogamp.org/Cubemap-in-a-single-DDS-File-tp843314p843338.html

Sorry, i forgot something:

After the datas are read with

DDsImages.ImageInfo[] info = DDsImages.read(filename);

a change must be made to the right opengl pixelformat e.g.

// all maps in a cube must have the same pixel or compressed format,so the
// following call is correct for all maps
int pixelOrCompressionsFormat  = info[0].getCompressionFormat()

          switch(pixelOrCompressionsFormat)
             {
              case DDsImages.D3DFMT_DXT1:{
                                    pixelOrCompressionsFormat = GL2.GL_COMPRESSED_RGBA_S3TC_DXT1_EXT;
                                         compressed = true;
                                        };break;
              case DDsImages.D3DFMT_DXT3:{
                                    pixelOrCompressionsFormat = GL2.GL_COMPRESSED_RGBA_S3TC_DXT3_EXT;
                                    compressed = true;
                                        };break;
              case DDsImages.D3DFMT_DXT5:{
                                    pixelOrCompressionsFormat = GL2.GL_COMPRESSED_RGBA_S3TC_DXT5_EXT;
                                    compressed = true;
                                     };break;
              case DDsImages.D3DFMT_A8R8G8B8:     {
                  pixelOrCompressionsFormat = GL2.GL_RGBA;
                  compressed = false;
                };break;
              case DDsImages.D3DFMT_R8G8B8:
              case DDsImages.D3DFMT_X8R8G8B8:{
                      pixelOrCompressionsFormat = GL2.GL_RGB;
                      compressed = false;
                     };break;                      
                                   
             }