We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ad5614 commit b748eabCopy full SHA for b748eab
src/chunk_manager/frontend.ts
@@ -266,9 +266,10 @@ export class ChunkQueueManager extends SharedObject {
266
if (newState !== oldState) {
267
switch (newState) {
268
case ChunkState.GPU_MEMORY:
269
- // console.log("Copying to GPU", chunk);
270
chunk.copyToGPU(this.gl);
271
- visibleChunksChanged = true;
+ if (chunk.constructor.name !== "ManifestChunk") {
+ visibleChunksChanged = true;
272
+ }
273
break;
274
case ChunkState.SYSTEM_MEMORY:
275
if (oldState === ChunkState.GPU_MEMORY) {
0 commit comments