Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2285)

Unified Diff: bench/DisplacementBench.cpp

Issue 23478013: Major bench refactoring. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: merge with head agani Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « bench/DeferredSurfaceCopyBench.cpp ('k') | bench/FSRectBench.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bench/DisplacementBench.cpp
diff --git a/bench/DisplacementBench.cpp b/bench/DisplacementBench.cpp
index e498a1bc63d58599780ccab3ac6856d20d0fc366..bf1ee73476c384baf0e3f61586359f87f68e5b84 100644
--- a/bench/DisplacementBench.cpp
+++ b/bench/DisplacementBench.cpp
@@ -105,7 +105,10 @@ protected:
paint.setImageFilter(SkNEW_ARGS(SkDisplacementMapEffect,
(SkDisplacementMapEffect::kR_ChannelSelectorType,
SkDisplacementMapEffect::kG_ChannelSelectorType, 0.0f, displ)))->unref();
- drawClippedBitmap(canvas, 0, 0, paint);
+
+ for (int i = 0; i < this->getLoops(); i++) {
+ drawClippedBitmap(canvas, 0, 0, paint);
+ }
}
private:
@@ -129,7 +132,9 @@ protected:
paint.setImageFilter(SkNEW_ARGS(SkDisplacementMapEffect,
(SkDisplacementMapEffect::kB_ChannelSelectorType,
SkDisplacementMapEffect::kA_ChannelSelectorType, 16.0f, displ)))->unref();
- drawClippedBitmap(canvas, 100, 0, paint);
+ for (int i = 0; i < this->getLoops(); i++) {
+ drawClippedBitmap(canvas, 100, 0, paint);
+ }
}
private:
@@ -153,7 +158,9 @@ protected:
paint.setImageFilter(SkNEW_ARGS(SkDisplacementMapEffect,
(SkDisplacementMapEffect::kR_ChannelSelectorType,
SkDisplacementMapEffect::kB_ChannelSelectorType, 32.0f, displ)))->unref();
- drawClippedBitmap(canvas, 200, 0, paint);
+ for (int i = 0; i < this->getLoops(); i++) {
+ drawClippedBitmap(canvas, 200, 0, paint);
+ }
}
private:
« no previous file with comments | « bench/DeferredSurfaceCopyBench.cpp ('k') | bench/FSRectBench.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698