diff options
-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 3ddbdf76..1656083b 100644 --- a/src/webGLWorker.js +++ b/src/webGLWorker.js @@ -499,6 +499,9 @@ function WebGLWorker() { this.compileShader = function(shader) { commandBuffer.push('compileShader', 1, shader.id); }; + this.getShaderInfoLog = function(shader) { + return ''; // optimistic assumption of success; no proxying + }; // Setup var postMainLoop = Module['postMainLoop']; |