You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// exit early if a new request has already started
if(cached._loadIndex!==loadIndex){
return;
}
If a separate load for the same tile is started, causing the first to be cancelled then we need to dispose of any "ImageBitmaps" that are left dangling. We should make sure we dispose of the content in this case.
Specifically this point here:
3DTilesRendererJS/src/three/TilesRenderer.js
Lines 699 to 704 in 8142a2d
If a separate load for the same tile is started, causing the first to be cancelled then we need to dispose of any "ImageBitmaps" that are left dangling. We should make sure we dispose of the content in this case.
Related to #422, #877.
The text was updated successfully, but these errors were encountered: