Make this mess of performance measuring a bit more readable

This commit is contained in:
Jonas Kulla 2013-09-27 04:47:12 +02:00
parent 12c92d6dd0
commit 92525cd077
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ struct GPUTimer
if (++counter < iter)
return;
qDebug() << " Avg. GPU time:" << ((double) acc / (iter * 1000 * 1000)) << "ms";
qDebug() << " Avg. GPU time:" << ((double) acc / (iter * 1000 * 1000)) << "ms";
acc = counter = 0;
}