diff options
author | Sven Gothel <[email protected]> | 2011-08-30 04:02:31 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-08-30 04:02:31 +0200 |
commit | 0566800aff03ebd9d7414cb547123dcad6620b22 (patch) | |
tree | d5502726c4b9d19db12f27a4acc9c57e465d64d4 /src/demos/es2/RedSquare.java | |
parent | 51682361b7a98988e645a7d45f64fa08dec7bf42 (diff) |
Adapt to JOGL commit 7f2da7bb878813817efab0eb01bbf274065ef6c6
Diffstat (limited to 'src/demos/es2/RedSquare.java')
-rwxr-xr-x | src/demos/es2/RedSquare.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demos/es2/RedSquare.java b/src/demos/es2/RedSquare.java index c4817a8..c335478 100755 --- a/src/demos/es2/RedSquare.java +++ b/src/demos/es2/RedSquare.java @@ -223,7 +223,7 @@ public class RedSquare extends Thread implements WindowListener, KeyListener, Mo throw new GLException("Error setting PMVMatrix in shader: "+st); } // Allocate vertex arrays - GLArrayDataClient vertices = GLArrayDataClient.createGLSL(st, "mgl_Vertex", 3, gl.GL_FLOAT, false, 4); + GLArrayDataClient vertices = GLArrayDataClient.createGLSL("mgl_Vertex", 3, gl.GL_FLOAT, false, 4); { // Fill them up FloatBuffer verticeb = (FloatBuffer)vertices.getBuffer(); @@ -234,7 +234,7 @@ public class RedSquare extends Thread implements WindowListener, KeyListener, Mo } vertices.seal(gl, true); - GLArrayDataClient colors = GLArrayDataClient.createGLSL(st, "mgl_Color", 4, gl.GL_FLOAT, false, 4); + GLArrayDataClient colors = GLArrayDataClient.createGLSL("mgl_Color", 4, gl.GL_FLOAT, false, 4); { // Fill them up FloatBuffer colorb = (FloatBuffer)colors.getBuffer(); |