From 4104aa62864fccdc84d8fc6d8d35bcbba58a02d7 Mon Sep 17 00:00:00 2001 From: samcake Date: Thu, 3 Nov 2016 14:31:28 -0700 Subject: [PATCH] avoid warning? --- libraries/gpu-gl/src/gpu/gl45/GL45BackendTexture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/gpu-gl/src/gpu/gl45/GL45BackendTexture.cpp b/libraries/gpu-gl/src/gpu/gl45/GL45BackendTexture.cpp index 07b4ca084d..1075c1407d 100644 --- a/libraries/gpu-gl/src/gpu/gl45/GL45BackendTexture.cpp +++ b/libraries/gpu-gl/src/gpu/gl45/GL45BackendTexture.cpp @@ -159,7 +159,7 @@ void GL45Backend::initTextureManagementStage() { // But now let s refine the behavior based on vendor std::string vendor { (const char*)glGetString(GL_VENDOR) }; if ((vendor.compare("AMD") <= 0) || (vendor.compare("INTEL") <= 0)) { - qCDebug(gpugllogging, "GPU is sparse capable but force it off %s\n", vendor); + qCDebug(gpugllogging) << "GPU is sparse capable but force it off, vendor = " << vendor.c_str(); _textureManagement._sparseCapable = false; } }