diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-06-06 17:04:38 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-06-06 17:04:38 -0700 |
commit | f376765f7040585f2b61306a8177190ef4336d95 (patch) | |
tree | b303a4657af09479ffd08776cee7dab35e94a6b4 /src/webGLWorker.js | |
parent | 80a4702cabc406b15eae8285820f60ef834c059c (diff) |
linkProgram
Diffstat (limited to 'src/webGLWorker.js')
-rw-r--r-- | src/webGLWorker.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/webGLWorker.js b/src/webGLWorker.js index 97b757f4..76ee488f 100644 --- a/src/webGLWorker.js +++ b/src/webGLWorker.js @@ -514,6 +514,9 @@ function WebGLWorker() { this.bindAttribLocation = function(program, index, name) { commandBuffer.push('bindAttribLocation', 3, program.id, index, name); }; + this.linkProgram = function(program) { + commandBuffer.push('linkProgram', 1, program.id); + }; // Setup var postMainLoop = Module['postMainLoop']; |