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

Unified Diff: bench/MutexBench.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/MorphologyBench.cpp ('k') | bench/PathBench.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bench/MutexBench.cpp
diff --git a/bench/MutexBench.cpp b/bench/MutexBench.cpp
index d96f3f6600d98e6deada9ea4a48173d4bac4e82c..5a7058d5e02c578b34f809a0df6905178883f9f8 100644
--- a/bench/MutexBench.cpp
+++ b/bench/MutexBench.cpp
@@ -8,10 +8,6 @@
#include "SkThread.h"
class MutexBench : public SkBenchmark {
- enum {
- N = SkBENCHLOOP(80),
- M = SkBENCHLOOP(200)
- };
public:
MutexBench(void* param) : INHERITED(param) {
fIsRendering = false;
@@ -22,12 +18,10 @@ protected:
}
virtual void onDraw(SkCanvas*) {
- for (int i = 0; i < N; i++) {
- SK_DECLARE_STATIC_MUTEX(mu);
- for (int j = 0; j < M; j++) {
- mu.acquire();
- mu.release();
- }
+ SK_DECLARE_STATIC_MUTEX(mu);
+ for (int i = 0; i < this->getLoops(); i++) {
+ mu.acquire();
+ mu.release();
}
}
« no previous file with comments | « bench/MorphologyBench.cpp ('k') | bench/PathBench.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698