diff options
author | Rami Santina <[email protected]> | 2011-10-06 20:21:31 +0300 |
---|---|---|
committer | Rami Santina <[email protected]> | 2011-10-06 20:21:31 +0300 |
commit | fe8e357ac03d8dd5e244879647fcec7fca60dedc (patch) | |
tree | 9f45329f07d379902dcc9c62c630f7972f96b73b /src/jogl/classes/com | |
parent | 25204678f889de889a6b23c170e17bd7f13d2c01 (diff) | |
parent | fa7627f623141c6fa15856c74d26c8ffe82550d0 (diff) |
Merge branch 'master' of git://github.com/sgothel/jogl
Diffstat (limited to 'src/jogl/classes/com')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderUtil.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderUtil.java b/src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderUtil.java index 9ccd38bf1..747dd5c49 100644 --- a/src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderUtil.java +++ b/src/jogl/classes/com/jogamp/opengl/util/glsl/ShaderUtil.java @@ -39,6 +39,8 @@ import java.util.*; import javax.media.opengl.*; +import com.jogamp.common.nio.Buffers; + public class ShaderUtil { static abstract class Impl { public abstract String getShaderInfoLog(GL gl, int shaderObj); @@ -237,11 +239,11 @@ public class ShaderUtil { throw new GLException("No sources specified"); } - int[] lengths = new int[count]; + IntBuffer lengths = Buffers.newDirectIntBuffer(count); for(int i=0; i<count; i++) { - lengths[i] = source[i].length(); + lengths.put(i, source[i].length()); } - gl.glShaderSource(shader, count, source, lengths, 0); + gl.glShaderSource(shader, count, source, lengths); } public void shaderSource(GL _gl, IntBuffer shaders, java.lang.String[][] sources) |