summaryrefslogtreecommitdiffstats
path: root/src/demos
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2005-10-12 00:57:27 +0000
committerKenneth Russel <[email protected]>2005-10-12 00:57:27 +0000
commit55370bacd5640ea9be8f6c137ec03a76c6572651 (patch)
treeea3fa8beded6c4aefe6c335a153a539e4f9b9ac5 /src/demos
parentf716cc6e82ad2dc01c33e5520621724076fc5476 (diff)
Removed debugging code accidentally included in last checkin
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/branches/JSR-231@139 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/demos')
-rwxr-xr-xsrc/demos/hdr/ARBFPPipeline.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/demos/hdr/ARBFPPipeline.java b/src/demos/hdr/ARBFPPipeline.java
index 6d25fee..4501db3 100755
--- a/src/demos/hdr/ARBFPPipeline.java
+++ b/src/demos/hdr/ARBFPPipeline.java
@@ -27,11 +27,8 @@ public class ARBFPPipeline implements Pipeline {
}
public void copyToTexture(GL gl, int textureObject, int w, int h) {
- gl.glBindTexture(GL.GL_TEXTURE_RECTANGLE_NV, textureObject);
- long start = System.currentTimeMillis();
+ gl.glBindTexture(GL.GL_TEXTURE_RECTANGLE_NV, textureObject);
gl.glCopyTexSubImage2D(GL.GL_TEXTURE_RECTANGLE_NV, 0, 0, 0, 0, 0, w, h);
- long end = System.currentTimeMillis();
- System.err.println("glCopyTexSubImage2D " + w + "x" + h + " took " + (end - start) + " ms");
}
public void bindTexture(GL gl, int textureObject) {