summaryrefslogtreecommitdiffstats
path: root/src/demos
diff options
context:
space:
mode:
Diffstat (limited to 'src/demos')
-rwxr-xr-xsrc/demos/data/images/test_texture_dxt3_mipmap.ddsbin0 -> 87536 bytes
-rwxr-xr-xsrc/demos/texture/TestTexture.java2
2 files changed, 1 insertions, 1 deletions
diff --git a/src/demos/data/images/test_texture_dxt3_mipmap.dds b/src/demos/data/images/test_texture_dxt3_mipmap.dds
new file mode 100755
index 0000000..c58a396
--- /dev/null
+++ b/src/demos/data/images/test_texture_dxt3_mipmap.dds
Binary files differ
diff --git a/src/demos/texture/TestTexture.java b/src/demos/texture/TestTexture.java
index 8ca89e2..cd71a3a 100755
--- a/src/demos/texture/TestTexture.java
+++ b/src/demos/texture/TestTexture.java
@@ -165,7 +165,7 @@ public class TestTexture implements GLEventListener {
try {
System.err.println("Loading texture...");
- texture = TextureIO.newTexture(file);
+ texture = TextureIO.newTexture(file, true);
} catch (IOException e) {
e.printStackTrace();
ByteArrayOutputStream bos = new ByteArrayOutputStream();