From 6e307dd6ebac8a82fe30d3e05306725d24c8e551 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Fri, 21 Apr 2017 01:17:59 -0700 Subject: [PATCH] Remove debug logging --- libraries/gpu-gl/src/gpu/gl/GLTexture.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/libraries/gpu-gl/src/gpu/gl/GLTexture.cpp b/libraries/gpu-gl/src/gpu/gl/GLTexture.cpp index f1bf76b39d..ef938ecd6d 100644 --- a/libraries/gpu-gl/src/gpu/gl/GLTexture.cpp +++ b/libraries/gpu-gl/src/gpu/gl/GLTexture.cpp @@ -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; }