diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-06-06 16:55:47 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-06-06 16:55:47 -0700 |
commit | e4cdd7559160ce316678954f936d854eb08c016f (patch) | |
tree | f02835795ae2dfcd8ff2dfdb7c99367c743d97ba /src | |
parent | a79ec24da5008537230aac63619e344b45e6fe0c (diff) |
getShaderInfoLog
Diffstat (limited to 'src')
-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']; |