aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/ColorPrivBench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/ColorPrivBench.cpp')
-rw-r--r--bench/ColorPrivBench.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/ColorPrivBench.cpp b/bench/ColorPrivBench.cpp
index 1e152e6d62..328de4aebd 100644
--- a/bench/ColorPrivBench.cpp
+++ b/bench/ColorPrivBench.cpp
@@ -24,10 +24,10 @@ public:
virtual const char* onGetName() SK_OVERRIDE { return fName.c_str(); }
- virtual void onDraw(SkCanvas*) SK_OVERRIDE {
+ virtual void onDraw(const int loops, SkCanvas*) SK_OVERRIDE {
const SkPMColor src = 0xAB998877, dst = 0x66334455;
volatile SkPMColor junk = 0;
- for (int i = 0; i < 10*this->getLoops(); ++i) {
+ for (int i = 0; i < 10*loops; ++i) {
for (size_t j = 0; j <= 256; j++) {
const unsigned scale = fScales[j];
if (kFast && kScale) {