Garrett Johnson %!s(int64=5) %!d(string=hai) anos
pai
achega
b0a4087cbd
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      src/base/TilesRendererBase.js

+ 1 - 0
src/base/TilesRendererBase.js

@@ -9,6 +9,7 @@ import { UNLOADED, LOADING, PARSING, LOADED, FAILED } from './constants.js';
 // TODO: See if declaring function inline improves performance
 // TODO: Make sure active state works as expected
 
+// Function for sorting the evicted LRU items. We should evict the shallowest depth first.
 const lruSort = ( a, b ) => a.__depth - b.__depth;
 
 export class TilesRendererBase {