Hi!
I’m using jogl and until now i used textures in *.png format. (This works fine)
Now i want to use dds files and also found support for the format in the TextureIO Class.
I changed the source code to load the dds files:
textureData = TextureIO.newTextureData(new File(“img/outdoor_wall1_1_s.dds”); true, TextureIO.DDS);
texture = TextureIO.newTexture(textureData);
When i start the programm however the walls are plain white - with no texture.
Any hint how to solve this?
Any help appreciated,
ToM