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

Side by Side Diff: bench/CodecBench.h

Issue 1051973002: Test SkCodec to kIndex8 in nanobench. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Remove extra newline. Created 5 years, 8 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 unified diff | Download patch
« no previous file with comments | « no previous file | bench/CodecBench.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef CodecBench_DEFINED 8 #ifndef CodecBench_DEFINED
9 #define CodecBench_DEFINED 9 #define CodecBench_DEFINED
10 10
11 #include "Benchmark.h" 11 #include "Benchmark.h"
12 #include "SkBitmap.h"
13 #include "SkData.h" 12 #include "SkData.h"
14 #include "SkImageInfo.h" 13 #include "SkImageInfo.h"
15 #include "SkRefCnt.h" 14 #include "SkRefCnt.h"
16 #include "SkString.h" 15 #include "SkString.h"
17 16
18 /** 17 /**
19 * Time SkCodec. 18 * Time SkCodec.
20 */ 19 */
21 class CodecBench : public Benchmark { 20 class CodecBench : public Benchmark {
22 public: 21 public:
23 // Calls encoded->ref() 22 // Calls encoded->ref()
24 CodecBench(SkString basename, SkData* encoded, SkColorType colorType); 23 CodecBench(SkString basename, SkData* encoded, SkColorType colorType);
25 24
26 protected: 25 protected:
27 const char* onGetName() override; 26 const char* onGetName() override;
28 bool isSuitableFor(Backend backend) override; 27 bool isSuitableFor(Backend backend) override;
29 void onDraw(const int n, SkCanvas* canvas) override; 28 void onDraw(const int n, SkCanvas* canvas) override;
30 void onPreDraw() override; 29 void onPreDraw() override;
31 30
32 private: 31 private:
33 SkString fName; 32 SkString fName;
34 const SkColorType fColorType; 33 const SkColorType fColorType;
35 SkAutoTUnref<SkData> fData; 34 SkAutoTUnref<SkData> fData;
36 SkBitmap fBitmap; 35 SkImageInfo fInfo; // Set in onPreDraw.
36 SkAutoMalloc fStorage;
msarett 2015/04/02 14:40:57 It wasn't completely clear to me that this was the
scroggo 2015/04/02 20:15:24 No, I think that is good feedback. Done.
37 typedef Benchmark INHERITED; 37 typedef Benchmark INHERITED;
38 }; 38 };
39 #endif // CodecBench_DEFINED 39 #endif // CodecBench_DEFINED
OLDNEW
« no previous file with comments | « no previous file | bench/CodecBench.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698