aboutsummaryrefslogtreecommitdiff
path: root/src/webGLWorker.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/webGLWorker.js')
-rw-r--r--src/webGLWorker.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/webGLWorker.js b/src/webGLWorker.js
index dc68ea61..c7ebc7d6 100644
--- a/src/webGLWorker.js
+++ b/src/webGLWorker.js
@@ -807,6 +807,9 @@ function WebGLWorker() {
this.framebufferTexture2D = function(target, attachment, textarget, texture, level) {
commandBuffer.push('framebufferTexture2D', 5, target, attachment, textarget, texture ? texture.id : 0, level);
};
+ this.checkFramebufferStatus = function(target) {
+ return this.FRAMEBUFFER_COMPLETE; // XXX totally wrong
+ };
// Setup
var dropped = 0;