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

Unified Diff: bench/MathBench.cpp

Issue 17463002: Remove unused NormalizeBench::fUsePortable field. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bench/MathBench.cpp
diff --git a/bench/MathBench.cpp b/bench/MathBench.cpp
index 8092f13823ac12c603d6b2be50d3de6272911fce..1fc5705be829946e2b4f00a55562985f796994d0 100644
--- a/bench/MathBench.cpp
+++ b/bench/MathBench.cpp
@@ -439,12 +439,10 @@ class NormalizeBench : public SkBenchmark {
LOOP = SkBENCHLOOP(1000),
};
SkVector fVec[ARRAY];
- bool fUsePortable;
public:
- NormalizeBench(void* param, bool usePortable)
- : INHERITED(param)
- , fUsePortable(usePortable) {
+ NormalizeBench(void* param)
+ : INHERITED(param) {
SkRandom rand;
for (int i = 0; i < ARRAY; ++i) {
@@ -502,4 +500,4 @@ DEF_BENCH( return new FloorBench(p, true); )
DEF_BENCH( return new CLZBench(p, false); )
DEF_BENCH( return new CLZBench(p, true); )
-DEF_BENCH( return new NormalizeBench(p, false); )
+DEF_BENCH( return new NormalizeBench(p); )
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698