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 #include "CodecBenchPriv.h" |
8 #include "DecodingBench.h" | 9 #include "DecodingBench.h" |
9 #include "SkBitmap.h" | 10 #include "SkBitmap.h" |
10 #include "SkData.h" | 11 #include "SkData.h" |
11 #include "SkImageDecoder.h" | 12 #include "SkImageDecoder.h" |
12 #include "SkMallocPixelRef.h" | 13 #include "SkMallocPixelRef.h" |
13 #include "SkOSFile.h" | 14 #include "SkOSFile.h" |
14 #include "SkStream.h" | 15 #include "SkStream.h" |
15 | 16 |
16 /* | 17 /* |
17 * | 18 * |
18 * This benchmark is designed to test the performance of image decoding. | 19 * This benchmark is designed to test the performance of image decoding. |
19 * It is invoked from the nanobench.cpp file. | 20 * It is invoked from the nanobench.cpp file. |
20 * | 21 * |
21 */ | 22 */ |
22 DecodingBench::DecodingBench(SkString path, SkColorType colorType) | 23 DecodingBench::DecodingBench(SkString path, SkColorType colorType) |
23 : fColorType(colorType) | 24 : fColorType(colorType) |
24 , fData(SkData::NewFromFileName(path.c_str())) | 25 , fData(SkData::NewFromFileName(path.c_str())) |
25 { | 26 { |
26 // Parse filename and the color type to give the benchmark a useful name | 27 // Parse filename and the color type to give the benchmark a useful name |
27 SkString baseName = SkOSPath::Basename(path.c_str()); | 28 SkString baseName = SkOSPath::Basename(path.c_str()); |
28 const char* colorName; | 29 fName.printf("Decode_%s_%s", baseName.c_str(), color_type_to_str(colorType))
; |
29 switch(colorType) { | |
30 case kN32_SkColorType: | |
31 colorName = "N32"; | |
32 break; | |
33 case kRGB_565_SkColorType: | |
34 colorName = "565"; | |
35 break; | |
36 case kAlpha_8_SkColorType: | |
37 colorName = "Alpha8"; | |
38 break; | |
39 default: | |
40 colorName = "Unknown"; | |
41 } | |
42 fName.printf("Decode_%s_%s", baseName.c_str(), colorName); | |
43 | 30 |
44 #ifdef SK_DEBUG | 31 #ifdef SK_DEBUG |
45 // Ensure that we can create a decoder. | 32 // Ensure that we can create a decoder. |
46 SkAutoTDelete<SkStreamRewindable> stream(new SkMemoryStream(fData)); | 33 SkAutoTDelete<SkStreamRewindable> stream(new SkMemoryStream(fData)); |
47 SkAutoTDelete<SkImageDecoder> decoder(SkImageDecoder::Factory(stream)); | 34 SkAutoTDelete<SkImageDecoder> decoder(SkImageDecoder::Factory(stream)); |
48 SkASSERT(decoder != nullptr); | 35 SkASSERT(decoder != nullptr); |
49 #endif | 36 #endif |
50 } | 37 } |
51 | 38 |
52 const char* DecodingBench::onGetName() { | 39 const char* DecodingBench::onGetName() { |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 for (int i = 0; i < n; i++) { | 88 for (int i = 0; i < n; i++) { |
102 // create a new stream and a new decoder to mimic the behavior of | 89 // create a new stream and a new decoder to mimic the behavior of |
103 // CodecBench. | 90 // CodecBench. |
104 stream.reset(new SkMemoryStream(fData)); | 91 stream.reset(new SkMemoryStream(fData)); |
105 decoder.reset(SkImageDecoder::Factory(stream)); | 92 decoder.reset(SkImageDecoder::Factory(stream)); |
106 decoder->setAllocator(&allocator); | 93 decoder->setAllocator(&allocator); |
107 decoder->decode(stream, &bitmap, fColorType, | 94 decoder->decode(stream, &bitmap, fColorType, |
108 SkImageDecoder::kDecodePixels_Mode); | 95 SkImageDecoder::kDecodePixels_Mode); |
109 } | 96 } |
110 } | 97 } |
OLD | NEW |