diff options
author | Michael Bien <[email protected]> | 2010-03-29 22:33:06 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-03-29 22:33:06 +0200 |
commit | 476d1d755b6d9c5650779aedda1265917a6dec6e (patch) | |
tree | 87b4db24dcdb8a00f7796ed73f5197882e26e6da /src/jogl/classes/com/jogamp/opengl/util/TGAWriter.java | |
parent | 273fb3383a04408725ee2bda632af0edf6e8421f (diff) |
fixed a bunch of javadoc warnings.
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/util/TGAWriter.java')
-rwxr-xr-x | src/jogl/classes/com/jogamp/opengl/util/TGAWriter.java | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/util/TGAWriter.java b/src/jogl/classes/com/jogamp/opengl/util/TGAWriter.java index c53cafdcb..b949f0e39 100755 --- a/src/jogl/classes/com/jogamp/opengl/util/TGAWriter.java +++ b/src/jogl/classes/com/jogamp/opengl/util/TGAWriter.java @@ -42,13 +42,11 @@ import java.nio.channels.*; /** * Utility class which helps take fast screenshots of OpenGL rendering - * results into Targa-format files. Used by the {@link - * com.jogamp.opengl.util.gl2.Screenshot Screenshot} class; can also be used - * in conjunction with the {@link com.jogamp.opengl.util.gl2.TileRenderer - * TileRenderer} class. <P> + * results into Targa-format files. Used by the {@link com.jogamp.opengl.util.awt.Screenshot} + * class; can also be used in conjunction with the {@link com.jogamp.opengl.util.gl2.TileRenderer} class. */ - public class TGAWriter { + private static final int TARGA_HEADER_SIZE = 18; private FileChannel ch; |