diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 4688160a34..1e158c30be 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -6607,10 +6607,8 @@ bool Application::gpuTextureMemSizeStable() { _gpuTextureMemSizeAtLastCheck = textureResourceGPUMemSize; if (_gpuTextureMemSizeStabilityCount >= _minimumGPUTextureMemSizeStabilityCount) { - qDebug() << "GPU checking"; return (textureResourceGPUMemSize == texturePopulatedGPUMemSize) && (textureTransferSize == 0); } - qDebug() << "GPU not ready"; return false; } diff --git a/interface/src/octree/SafeLanding.cpp b/interface/src/octree/SafeLanding.cpp index d5eb4c23c2..ed0ce3c278 100644 --- a/interface/src/octree/SafeLanding.cpp +++ b/interface/src/octree/SafeLanding.cpp @@ -107,7 +107,6 @@ void SafeLanding::noteReceivedsequenceNumber(int sequenceNumber) { } bool SafeLanding::isLoadSequenceComplete() { - qDebug() << "is sequence complete" << isSequenceNumbersComplete(); if (isEntityLoadingComplete() && isSequenceNumbersComplete()) { Locker lock(_lock); _initialStart = INVALID_SEQUENCE; @@ -196,7 +195,7 @@ bool SafeLanding::isEntityLoadingComplete() { hasRenderable = false; entityTree->addingEntity(entityMapIter->first); } - qDebug() << EntityTypes::getEntityTypeName(entity->getType()) << entity->isVisuallyReady() << hasRenderable << entity->isParentPathComplete(); + isVisuallyReady = entity->isVisuallyReady() || (!entityRenderable && !entity->isParentPathComplete()); } @@ -211,10 +210,6 @@ bool SafeLanding::isEntityLoadingComplete() { } } - if (!_trackedEntities.empty()) { - qDebug() << "\n"; - } - if (enableInterstitial) { _trackedEntityStabilityCount++; }