aboutsummaryrefslogtreecommitdiff
path: root/src/webGLClient.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-06-18 14:19:25 -0700
committerAlon Zakai <alonzakai@gmail.com>2014-06-18 14:20:05 -0700
commitd25fa198549b20c194f3c96a172c8bfc58aa1943 (patch)
tree768639fcf5cb56a0d5e7ccc8edd362cd3935db50 /src/webGLClient.js
parenta7ab04e3eeda3f40e6daef4d6026ac87b1f39505 (diff)
proxy framebufferTexture2D
Diffstat (limited to 'src/webGLClient.js')
-rw-r--r--src/webGLClient.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/webGLClient.js b/src/webGLClient.js
index 6177c26f..348a7465 100644
--- a/src/webGLClient.js
+++ b/src/webGLClient.js
@@ -29,6 +29,7 @@ function WebGLClient() {
case 'bindFramebuffer':
case 'bindTexture':
case 'bindBuffer': args[1] = args[1] ? objects[args[1]] : null; break;
+ case 'framebufferTexture2D': args[3] = args[3] ? objects[args[3]] : null; break;
}
return args;
}