OLD | NEW |
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 "SkData.h" | 12 #include "SkData.h" |
13 #include "SkImageInfo.h" | 13 #include "SkImageInfo.h" |
14 #include "SkRefCnt.h" | 14 #include "SkRefCnt.h" |
15 #include "SkString.h" | 15 #include "SkString.h" |
16 | 16 |
17 /** | 17 /** |
18 * Time SkCodec. | 18 * Time SkCodec. |
19 */ | 19 */ |
20 class CodecBench : public Benchmark { | 20 class CodecBench : public Benchmark { |
21 public: | 21 public: |
22 // Calls encoded->ref() | 22 // Calls encoded->ref() |
23 CodecBench(SkString basename, SkData* encoded, SkColorType colorType); | 23 CodecBench(SkString basename, SkData* encoded, SkColorType colorType); |
24 | 24 |
25 protected: | 25 protected: |
26 const char* onGetName() override; | 26 const char* onGetName() override; |
27 bool isSuitableFor(Backend backend) override; | 27 bool isSuitableFor(Backend backend) override; |
28 void onDraw(const int n, SkCanvas* canvas) override; | 28 void onDraw(const int n, SkCanvas* canvas) override; |
29 void onPreDraw() override; | 29 void onDelayedSetup() override; |
30 | 30 |
31 private: | 31 private: |
32 SkString fName; | 32 SkString fName; |
33 const SkColorType fColorType; | 33 const SkColorType fColorType; |
34 SkAutoTUnref<SkData> fData; | 34 SkAutoTUnref<SkData> fData; |
35 SkImageInfo fInfo; // Set in onPreDraw. | 35 SkImageInfo fInfo; // Set in onPreDraw. |
36 SkAutoMalloc fPixelStorage; | 36 SkAutoMalloc fPixelStorage; |
37 typedef Benchmark INHERITED; | 37 typedef Benchmark INHERITED; |
38 }; | 38 }; |
39 #endif // CodecBench_DEFINED | 39 #endif // CodecBench_DEFINED |
OLD | NEW |