diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-06-06 17:01:41 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-06-06 17:01:41 -0700 |
commit | 2aa38c38d4978d48f6e95a8f9cfb873d2649d69e (patch) | |
tree | f827c89e94bef7374f41fb4ffd94647e3ca78eed | |
parent | 1410e86a0492fb63db2b15e105223ca628f4327c (diff) |
attachShader client portion
-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 fdd96964..c54ec2ab 100644 --- a/src/webGLClient.js +++ b/src/webGLClient.js @@ -7,6 +7,7 @@ function WebGLClient() { switch (command) { case 'compileShader': case 'shaderSource': args[0] = objects[args[0]]; break; + case 'attachShader': args[0] = objects[args[0]]; args[1] = objects[args[1]]; break; } } |