mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 20:58:38 +02:00
Remove debug logging
This commit is contained in:
parent
14f8c91e23
commit
6e307dd6eb
1 changed files with 0 additions and 3 deletions
|
@ -461,13 +461,10 @@ void GLVariableAllocationSupport::updateMemoryPressure() {
|
||||||
|
|
||||||
auto newState = MemoryPressureState::Idle;
|
auto newState = MemoryPressureState::Idle;
|
||||||
if (hasTransfers) {
|
if (hasTransfers) {
|
||||||
qDebug() << "Transferring";
|
|
||||||
newState = MemoryPressureState::Transfer;
|
newState = MemoryPressureState::Transfer;
|
||||||
} else if (pressure > OVERSUBSCRIBED_PRESSURE_VALUE && canDemote) {
|
} else if (pressure > OVERSUBSCRIBED_PRESSURE_VALUE && canDemote) {
|
||||||
qDebug() << "Demoting";
|
|
||||||
newState = MemoryPressureState::Oversubscribed;
|
newState = MemoryPressureState::Oversubscribed;
|
||||||
} else if (pressure < UNDERSUBSCRIBED_PRESSURE_VALUE && ((unallocated != 0 && canPromote) || canPopulate)) {
|
} else if (pressure < UNDERSUBSCRIBED_PRESSURE_VALUE && ((unallocated != 0 && canPromote) || canPopulate)) {
|
||||||
qDebug() << "Promoting";
|
|
||||||
newState = MemoryPressureState::Undersubscribed;
|
newState = MemoryPressureState::Undersubscribed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue