summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-09-03 15:24:27 +0200
committerSven Gothel <[email protected]>2013-09-03 15:24:27 +0200
commit4455e56f4f9294fe50cafabc6d08867bb82c416f (patch)
tree0c77ed286fa3a98a62c5d164bc4aeb3243fa28f1
parent54dcdf1f53c9fc1f7124cf77bbf5aa952d42053a (diff)
GLBuffers: Align comment
-rw-r--r--src/jogl/classes/com/jogamp/opengl/util/GLBuffers.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/util/GLBuffers.java b/src/jogl/classes/com/jogamp/opengl/util/GLBuffers.java
index 7882a1429..6bdea4518 100644
--- a/src/jogl/classes/com/jogamp/opengl/util/GLBuffers.java
+++ b/src/jogl/classes/com/jogamp/opengl/util/GLBuffers.java
@@ -443,7 +443,7 @@ public class GLBuffers extends Buffers {
skipBytes + // aligned skipPixels * bpp
( skipImages + depth - 1 ) * imageHeight * rowLengthInBytes + // aligned whole images
( skipRows + height - 1 ) * rowLengthInBytes + // aligned lines
- width * bytesPerPixel; // last line
+ width * bytesPerPixel; // last line
}
/**