aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/DeferredSurfaceCopyBench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/DeferredSurfaceCopyBench.cpp')
-rw-r--r--bench/DeferredSurfaceCopyBench.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/DeferredSurfaceCopyBench.cpp b/bench/DeferredSurfaceCopyBench.cpp
index 91b34a90c0..713078038e 100644
--- a/bench/DeferredSurfaceCopyBench.cpp
+++ b/bench/DeferredSurfaceCopyBench.cpp
@@ -31,7 +31,7 @@ protected:
"DeferredSurfaceCopy_nonDiscardable";
}
- virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
+ virtual void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE {
// The canvas is not actually used for this test except to provide
// configuration information: gpu, multisampling, size, etc?
SkImageInfo info;
@@ -55,7 +55,7 @@ protected:
SkAutoTUnref<SkDeferredCanvas> drawingCanvas(SkDeferredCanvas::Create(surface));
surface->unref();
- for (int iteration = 0; iteration < this->getLoops(); iteration++) {
+ for (int iteration = 0; iteration < loops; iteration++) {
drawingCanvas->clear(0);
SkAutoTUnref<SkImage> image(drawingCanvas->newImageSnapshot());
SkPaint paint;