diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-06-12 14:41:00 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-06-12 14:41:00 -0700 |
commit | ab36fca70b972c149fb2d67a5854cec921630174 (patch) | |
tree | 97c1b3903dc1f1a2855f86168155f9b0e745ba31 /src/webGLClient.js | |
parent | 3b606eaa60f487aa8afe2ca46137c43f27f10d5a (diff) |
fix getImageData crash
Diffstat (limited to 'src/webGLClient.js')
-rw-r--r-- | src/webGLClient.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webGLClient.js b/src/webGLClient.js index 41e23448..28bebde2 100644 --- a/src/webGLClient.js +++ b/src/webGLClient.js @@ -55,7 +55,7 @@ function WebGLClient() { } this.onmessage = function(msg) { - dump('client GL got ' + JSON.stringify(msg) + '\n'); + //dump('client GL got ' + JSON.stringify(msg) + '\n'); switch(msg.op) { case 'render': { renderCommands(msg.commandBuffer); |