Sanitizing source files in Housekeeper-Nightly

git-svn-id: http://skia.googlecode.com/svn/trunk@12734 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
skia.committer@gmail.com 2013-12-18 07:01:56 +00:00
parent 83c6a22525
commit 3b85deb9c3
2 changed files with 5 additions and 5 deletions

View File

@ -205,10 +205,10 @@ void PictureBenchmark::run(SkPicture* pict) {
this->logProgress(result.c_str());
#else
SkString result = longRunningTimerData.getResult(timeFormat.c_str(),
fTimerResult,
configName.c_str(),
timerTypes,
SkString result = longRunningTimerData.getResult(timeFormat.c_str(),
fTimerResult,
configName.c_str(),
timerTypes,
fRepeats);
result.append("\n");
this->logProgress(result.c_str());

View File

@ -36,7 +36,7 @@
static inline SkScalar scalar_log2(SkScalar x) {
static const SkScalar log2_conversion_factor = SkScalarDiv(1, SkScalarLog(2));
return SkScalarLog(x) * log2_conversion_factor;
}