add benchmark for path filling
git-svn-id: http://skia.googlecode.com/svn/trunk@1097 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/bench/benchmain.cpp b/bench/benchmain.cpp
index 913841b..4f6d81c 100644
--- a/bench/benchmain.cpp
+++ b/bench/benchmain.cpp
@@ -348,7 +348,7 @@
{
SkString str;
- str.printf("running bench [%d %d] %16s", dim.fX, dim.fY,
+ str.printf("running bench [%d %d] %28s", dim.fX, dim.fY,
bench->getName());
log_progress(str);
}
@@ -405,8 +405,7 @@
if (repeatDraw > 1) {
double duration = SkTime::GetMSecs() - now;
SkString str;
- str.printf(" %4s: msecs = %7.2f, fps = %7.2f", configName,
- duration / repeatDraw, repeatDraw * 1000.0 / duration);
+ str.printf(" %4s: msecs = %5.2f", configName, duration / repeatDraw);
log_progress(str);
}
if (outDir.size() > 0) {