mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 17:14:59 +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;
|
||||
if (hasTransfers) {
|
||||
qDebug() << "Transferring";
|
||||
newState = MemoryPressureState::Transfer;
|
||||
} else if (pressure > OVERSUBSCRIBED_PRESSURE_VALUE && canDemote) {
|
||||
qDebug() << "Demoting";
|
||||
newState = MemoryPressureState::Oversubscribed;
|
||||
} else if (pressure < UNDERSUBSCRIBED_PRESSURE_VALUE && ((unallocated != 0 && canPromote) || canPopulate)) {
|
||||
qDebug() << "Promoting";
|
||||
newState = MemoryPressureState::Undersubscribed;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue