@idetik/core 0.7.7 → 0.7.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -3
- package/dist/index.js +224 -227
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +12 -12
- package/dist/index.umd.cjs.map +1 -1
- package/dist/types/src/core/chunk_store_view.d.ts +2 -3
- package/dist/types/src/core/chunk_store_view.d.ts.map +1 -1
- package/dist/types/src/layers/chunked_image_layer.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -544,15 +544,14 @@ declare class ChunkStoreView {
|
|
|
544
544
|
getTimeIndex(sliceCoords: SliceCoordinates): number;
|
|
545
545
|
get lodCount(): number;
|
|
546
546
|
getChunksToRender(sliceCoords: SliceCoordinates): Chunk[];
|
|
547
|
-
|
|
548
|
-
|
|
547
|
+
updateChunksForImage(sliceCoords: SliceCoordinates, viewport: Viewport): void;
|
|
548
|
+
updateChunksForVolume(sliceCoords: SliceCoordinates): void;
|
|
549
549
|
allVisibleFallbackLODLoaded(sliceCoords: SliceCoordinates): boolean;
|
|
550
550
|
get currentLOD(): number;
|
|
551
551
|
maybeForgetChunk(chunk: Chunk): void;
|
|
552
552
|
dispose(): void;
|
|
553
553
|
setImageSourcePolicy(newPolicy: ImageSourcePolicy, key: symbol): void;
|
|
554
554
|
private setLOD;
|
|
555
|
-
private updateChunkViewStates;
|
|
556
555
|
private isChunkChannelInSlice;
|
|
557
556
|
private updateChunksAtTimeIndex;
|
|
558
557
|
private markTimeChunksForPrefetch;
|