mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-08 01:22:25 +02:00
Merge pull request #8 from danteruiz/interstitialMerged
remmoving some debug statements
This commit is contained in:
commit
fc17e0ea16
2 changed files with 1 additions and 8 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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++;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue