diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-06-06 17:02:49 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-06-06 17:02:49 -0700 |
commit | 80a4702cabc406b15eae8285820f60ef834c059c (patch) | |
tree | 76a031ca35a6f77144a61d111d8eab1855e09017 /src/webGLClient.js | |
parent | 2aa38c38d4978d48f6e95a8f9cfb873d2649d69e (diff) |
bindAttribLocation
Diffstat (limited to 'src/webGLClient.js')
-rw-r--r-- | src/webGLClient.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/webGLClient.js b/src/webGLClient.js index c54ec2ab..b7a639ab 100644 --- a/src/webGLClient.js +++ b/src/webGLClient.js @@ -5,6 +5,7 @@ function WebGLClient() { function fixArgs(command, args) { switch (command) { + case 'bindAttribLocation': case 'compileShader': case 'shaderSource': args[0] = objects[args[0]]; break; case 'attachShader': args[0] = objects[args[0]]; args[1] = objects[args[1]]; break; |