mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 05:43:30 +03:00
Add maxTilesPerFrame degradation, fix tests.
This commit is contained in:
parent
8b16628950
commit
6b4c0f873a
2 changed files with 6 additions and 6 deletions
|
@ -217,10 +217,11 @@
|
|||
}
|
||||
|
||||
if (!supportedTypes.includes(internalCache.type)) {
|
||||
let logReference = this[DRAWER_INTERNAL_CACHE];
|
||||
logReference = logReference ? Object.entries(logReference) : this;
|
||||
$.console.warn("Attempt to render cache that is not prepared for current drawer " +
|
||||
"supported format: the preparation should've happened after tile processing has finished.",
|
||||
Object.entries(this[DRAWER_INTERNAL_CACHE]),
|
||||
this, tileToDraw);
|
||||
logReference, tileToDraw);
|
||||
|
||||
internalCache.transformTo(supportedTypes.length > 1 ? supportedTypes : supportedTypes[0])
|
||||
.then(() => this._triggerNeedsDraw());
|
||||
|
|
|
@ -1821,10 +1821,9 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag
|
|||
} else if (!loadingCoverage) {
|
||||
// add tile to best tiles to load only when not loaded already
|
||||
best = this._compareTiles( best, tile, this._currentMaxTilesPerFrame );
|
||||
// TODO: test 'Viewer headers can be updated' fail if we start decreasing the number since not enough tiles get invoked
|
||||
// if (this._currentMaxTilesPerFrame > this.maxTilesPerFrame) {
|
||||
// this._currentMaxTilesPerFrame = Math.max(Math.ceil(this.maxTilesPerFrame / 2), this.maxTilesPerFrame);
|
||||
// }
|
||||
if (this._currentMaxTilesPerFrame > this.maxTilesPerFrame) {
|
||||
this._currentMaxTilesPerFrame = Math.max(Math.ceil(this.maxTilesPerFrame / 2), this.maxTilesPerFrame);
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
|
|
Loading…
Add table
Reference in a new issue