summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2007-10-09 05:04:58 +0000
committerKenneth Russel <[email protected]>2007-10-09 05:04:58 +0000
commit2bdf0b792c0b89cde549087af1676ee558e37aa6 (patch)
treeafddad92f2f80795b10a365b1df8810726b2e34a
parenta90cdf51f1a7cb6bf01046e90ad9fc88d906d980 (diff)
Added debugging println
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@222 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
-rwxr-xr-xsrc/demos/texture/TestTexture.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/demos/texture/TestTexture.java b/src/demos/texture/TestTexture.java
index e6fcde2..ff0ff14 100755
--- a/src/demos/texture/TestTexture.java
+++ b/src/demos/texture/TestTexture.java
@@ -167,6 +167,7 @@ public class TestTexture implements GLEventListener {
try {
System.err.println("Loading texture...");
texture = TextureIO.newTexture(file, true);
+ System.err.println("Texture estimated memory size = " + texture.getEstimatedMemorySize());
} catch (IOException e) {
e.printStackTrace();
ByteArrayOutputStream bos = new ByteArrayOutputStream();