diff options
Diffstat (limited to 'src/webGLClient.js')
-rw-r--r-- | src/webGLClient.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/webGLClient.js b/src/webGLClient.js index 6c2238b3..266d7cfe 100644 --- a/src/webGLClient.js +++ b/src/webGLClient.js @@ -92,6 +92,7 @@ function WebGLClient() { function renderAllCommands() { // TODO: we can avoid running commands from buffers that are not the last, if they // have no side effects, as each buffer is from a different frame + //if (commandBuffers.length > 1) dump('extra buffs: ' + (commandBuffers.length-1) + '\n'); for (var i = 0; i < commandBuffers.length; i++) { renderCommands(commandBuffers[i]); } |