diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-06-18 14:12:10 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-06-18 14:12:10 -0700 |
commit | a78fd466c4bf77bd453992f4766cd5da2b421ac9 (patch) | |
tree | 81dc78a93d37866e88e444e389260916edca5f06 /src/webGLClient.js | |
parent | 0317628c43d8cba131014cdbd6665e2ac29201c1 (diff) |
proxy framebuffer stuff
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 c41752ab..6177c26f 100644 --- a/src/webGLClient.js +++ b/src/webGLClient.js @@ -26,6 +26,7 @@ function WebGLClient() { case 'compileShader': case 'shaderSource': args[0] = objects[args[0]]; break; case 'attachShader': args[0] = objects[args[0]]; args[1] = objects[args[1]]; break; + case 'bindFramebuffer': case 'bindTexture': case 'bindBuffer': args[1] = args[1] ? objects[args[1]] : null; break; } |