diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-06-06 16:00:14 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-06-06 16:00:14 -0700 |
commit | cec906c9c27fba775270e62aa3359489fe452c56 (patch) | |
tree | 171d122fc7148583d89738fb548451964ed657a9 /src/proxyClient.js | |
parent | e1055ada578f6218b5c16104ea554cc74c831959 (diff) |
prepare to proxy gl commands
Diffstat (limited to 'src/proxyClient.js')
-rw-r--r-- | src/proxyClient.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/proxyClient.js b/src/proxyClient.js index 62ae2492..53412671 100644 --- a/src/proxyClient.js +++ b/src/proxyClient.js @@ -80,6 +80,10 @@ worker.onmessage = function worker_onmessage(event) { } break; } + case 'gl': { + Module.glClient.onmessage(data); + break; + } default: throw 'what?'; } }; |