Less declutter flicker by respecting renderBuffer

This commit is contained in:
Andreas Hocevar
2020-06-07 22:05:15 +02:00
parent 35fdcb9565
commit 0f9de15448
2 changed files with 14 additions and 7 deletions

View File

@@ -76,7 +76,7 @@ class ExecutorGroup {
* @private
* @type {number|undefined}
*/
this.renderBuffer_ = opt_renderBuffer;
this.renderBuffer_ = opt_renderBuffer || 0;
/**
* @private
@@ -132,7 +132,8 @@ class ExecutorGroup {
this.resolution_,
this.pixelRatio_,
this.overlaps_,
instructions
instructions,
this.renderBuffer_
);
}
}