mirror of
https://github.com/lubosz/overte.git
synced 2025-08-07 16:41:02 +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;
|
_gpuTextureMemSizeAtLastCheck = textureResourceGPUMemSize;
|
||||||
|
|
||||||
if (_gpuTextureMemSizeStabilityCount >= _minimumGPUTextureMemSizeStabilityCount) {
|
if (_gpuTextureMemSizeStabilityCount >= _minimumGPUTextureMemSizeStabilityCount) {
|
||||||
qDebug() << "GPU checking";
|
|
||||||
return (textureResourceGPUMemSize == texturePopulatedGPUMemSize) && (textureTransferSize == 0);
|
return (textureResourceGPUMemSize == texturePopulatedGPUMemSize) && (textureTransferSize == 0);
|
||||||
}
|
}
|
||||||
qDebug() << "GPU not ready";
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -107,7 +107,6 @@ void SafeLanding::noteReceivedsequenceNumber(int sequenceNumber) {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool SafeLanding::isLoadSequenceComplete() {
|
bool SafeLanding::isLoadSequenceComplete() {
|
||||||
qDebug() << "is sequence complete" << isSequenceNumbersComplete();
|
|
||||||
if (isEntityLoadingComplete() && isSequenceNumbersComplete()) {
|
if (isEntityLoadingComplete() && isSequenceNumbersComplete()) {
|
||||||
Locker lock(_lock);
|
Locker lock(_lock);
|
||||||
_initialStart = INVALID_SEQUENCE;
|
_initialStart = INVALID_SEQUENCE;
|
||||||
|
@ -196,7 +195,7 @@ bool SafeLanding::isEntityLoadingComplete() {
|
||||||
hasRenderable = false;
|
hasRenderable = false;
|
||||||
entityTree->addingEntity(entityMapIter->first);
|
entityTree->addingEntity(entityMapIter->first);
|
||||||
}
|
}
|
||||||
qDebug() << EntityTypes::getEntityTypeName(entity->getType()) << entity->isVisuallyReady() << hasRenderable << entity->isParentPathComplete();
|
|
||||||
isVisuallyReady = entity->isVisuallyReady() || (!entityRenderable && !entity->isParentPathComplete());
|
isVisuallyReady = entity->isVisuallyReady() || (!entityRenderable && !entity->isParentPathComplete());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -211,10 +210,6 @@ bool SafeLanding::isEntityLoadingComplete() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!_trackedEntities.empty()) {
|
|
||||||
qDebug() << "\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (enableInterstitial) {
|
if (enableInterstitial) {
|
||||||
_trackedEntityStabilityCount++;
|
_trackedEntityStabilityCount++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue