Add maxTilesPerFrame degradation, fix tests.

This commit is contained in:
Aiosa 2024-11-22 13:03:16 +01:00
parent 8b16628950
commit 6b4c0f873a
2 changed files with 6 additions and 6 deletions

View file

@ -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());

View file

@ -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 {