aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/adaptations/software/qsgsoftwarerenderloop.cpp
diff options
context:
space:
mode:
authorRobin Burchell <robin.burchell@viroteck.net>2016-06-30 00:13:20 +0200
committerRobin Burchell <robin.burchell@viroteck.net>2016-07-05 08:32:05 +0000
commitedfaf6c497aea24f74fca63beb3fe4fd95dece92 (patch)
tree62d98374e0c906496ff7728ad6c56cbc3e95f1df /src/quick/scenegraph/adaptations/software/qsgsoftwarerenderloop.cpp
parentdcafea9111eab7dd16760c8cf91b3872c06008d7 (diff)
qsgsoftwarerenderloop: Don't lie about which render loop is running
I forsee this as a good way to get confused in the future otherwise. Change-Id: I85a76bc4666db206b694b6fca6bdcc410e159126 Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
Diffstat (limited to 'src/quick/scenegraph/adaptations/software/qsgsoftwarerenderloop.cpp')
-rw-r--r--src/quick/scenegraph/adaptations/software/qsgsoftwarerenderloop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quick/scenegraph/adaptations/software/qsgsoftwarerenderloop.cpp b/src/quick/scenegraph/adaptations/software/qsgsoftwarerenderloop.cpp
index 0b111c7b19..19a963b403 100644
--- a/src/quick/scenegraph/adaptations/software/qsgsoftwarerenderloop.cpp
+++ b/src/quick/scenegraph/adaptations/software/qsgsoftwarerenderloop.cpp
@@ -183,7 +183,7 @@ void QSGSoftwareRenderLoop::renderWindow(QQuickWindow *window)
if (QSG_RASTER_LOG_TIME_RENDERLOOP().isDebugEnabled()) {
static QTime lastFrameTime = QTime::currentTime();
qCDebug(QSG_RASTER_LOG_TIME_RENDERLOOP,
- "Frame rendered with 'basic' renderloop in %dms, polish=%d, sync=%d, render=%d, swap=%d, frameDelta=%d",
+ "Frame rendered with 'software' renderloop in %dms, polish=%d, sync=%d, render=%d, swap=%d, frameDelta=%d",
int(swapTime / 1000000),
int(polishTime / 1000000),
int((syncTime - polishTime) / 1000000),