Index: bench/FontCacheBench.cpp |
diff --git a/bench/FontCacheBench.cpp b/bench/FontCacheBench.cpp |
index a52fd42ef24853800fdaccf1d89e1457d98e9c1a..a3c0672ef4638c727b8462cfba5b2b01351f0700 100644 |
--- a/bench/FontCacheBench.cpp |
+++ b/bench/FontCacheBench.cpp |
@@ -32,7 +32,7 @@ protected: |
return "fontcache"; |
} |
- virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { |
+ virtual void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE { |
SkPaint paint; |
this->setupPaint(&paint); |
paint.setTextEncoding(SkPaint::kGlyphID_TextEncoding); |
@@ -40,7 +40,7 @@ protected: |
const uint16_t* array = gUniqueGlyphIDs; |
while (*array != gUniqueGlyphIDs_Sentinel) { |
int count = count_glyphs(array); |
- for (int i = 0; i < this->getLoops(); ++i) { |
+ for (int i = 0; i < loops; ++i) { |
paint.measureText(array, count * sizeof(uint16_t)); |
} |
array += count + 1; // skip the sentinel |
@@ -119,7 +119,7 @@ protected: |
return "fontefficiency"; |
} |
- virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { |
+ virtual void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE { |
static bool gDone; |
if (gDone) { |
return; |