From ce89f811f3db06536229415ffb86aac2064306e9 Mon Sep 17 00:00:00 2001 From: samcake Date: Thu, 3 Nov 2016 14:35:44 -0700 Subject: [PATCH] better loggin of the sparse switch --- libraries/gpu-gl/src/gpu/gl45/GL45BackendTexture.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libraries/gpu-gl/src/gpu/gl45/GL45BackendTexture.cpp b/libraries/gpu-gl/src/gpu/gl45/GL45BackendTexture.cpp index 1075c1407d..6e2e7ca62b 100644 --- a/libraries/gpu-gl/src/gpu/gl45/GL45BackendTexture.cpp +++ b/libraries/gpu-gl/src/gpu/gl45/GL45BackendTexture.cpp @@ -161,6 +161,8 @@ void GL45Backend::initTextureManagementStage() { if ((vendor.compare("AMD") <= 0) || (vendor.compare("INTEL") <= 0)) { qCDebug(gpugllogging) << "GPU is sparse capable but force it off, vendor = " << vendor.c_str(); _textureManagement._sparseCapable = false; + } else { + qCDebug(gpugllogging) << "GPU is sparse capable, vendor = " << vendor.c_str(); } }