diff options
author | Sven Gothel <[email protected]> | 2013-07-15 13:39:44 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-07-15 13:39:44 +0200 |
commit | d5599155b28f63a83112d4a4268c2cca246c9e28 (patch) | |
tree | a7a5d48dc0d9b569fb5a3df960adb6c27bbd8b7d /src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java | |
parent | 3a0d7703da32e9a5ddf08a334f18588a78038d88 (diff) |
StringBuffer -> StringBuilder
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java b/src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java index 6b41c0bc8..9f951d5da 100644 --- a/src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java +++ b/src/jogl/classes/com/jogamp/opengl/util/texture/TextureSequence.java @@ -75,7 +75,7 @@ import javax.media.opengl.GL; // in case a fixed lookup function is being chosen, replace the name in our code rsFp.replaceInShaderSource(myTextureLookupName, texLookupFuncName); - // Cache the TextureSequence shader details in StringBuffer: + // Cache the TextureSequence shader details in StringBuilder: final StringBuilder sFpIns = new StringBuilder(); // .. declaration of the texture sampler using the implementation specific type @@ -217,4 +217,4 @@ public interface TextureSequence { * @throws IllegalStateException if instance is not initialized */ public String getTextureLookupFragmentShaderImpl() throws IllegalStateException ; -}
\ No newline at end of file +} |