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 "BitmapRegionDecoderBench.h" | 8 #include "BitmapRegionDecoderBench.h" |
9 #include "CodecBenchPriv.h" | 9 #include "CodecBenchPriv.h" |
10 #include "SkBitmap.h" | 10 #include "SkBitmap.h" |
11 #include "SkCodecTools.h" | 11 #include "SkCodecPriv.h" |
12 #include "SkOSFile.h" | 12 #include "SkOSFile.h" |
13 | 13 |
14 BitmapRegionDecoderBench::BitmapRegionDecoderBench(const char* baseName, SkData*
encoded, | 14 BitmapRegionDecoderBench::BitmapRegionDecoderBench(const char* baseName, SkData*
encoded, |
15 SkBitmapRegionDecoderInterface::Strategy strategy, SkColorType colorType
, | 15 SkBitmapRegionDecoderInterface::Strategy strategy, SkColorType colorType
, |
16 uint32_t sampleSize, const SkIRect& subset) | 16 uint32_t sampleSize, const SkIRect& subset) |
17 : fBRD(nullptr) | 17 : fBRD(nullptr) |
18 , fData(SkRef(encoded)) | 18 , fData(SkRef(encoded)) |
19 , fStrategy(strategy) | 19 , fStrategy(strategy) |
20 , fColorType(colorType) | 20 , fColorType(colorType) |
21 , fSampleSize(sampleSize) | 21 , fSampleSize(sampleSize) |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 } | 59 } |
60 | 60 |
61 void BitmapRegionDecoderBench::onDraw(int n, SkCanvas* canvas) { | 61 void BitmapRegionDecoderBench::onDraw(int n, SkCanvas* canvas) { |
62 SkAutoTDelete<SkBitmap> bitmap; | 62 SkAutoTDelete<SkBitmap> bitmap; |
63 for (int i = 0; i < n; i++) { | 63 for (int i = 0; i < n; i++) { |
64 bitmap.reset(fBRD->decodeRegion(fSubset.left(), fSubset.top(), fSubset.w
idth(), | 64 bitmap.reset(fBRD->decodeRegion(fSubset.left(), fSubset.top(), fSubset.w
idth(), |
65 fSubset.height(), fSampleSize, fColorType)); | 65 fSubset.height(), fSampleSize, fColorType)); |
66 SkASSERT(nullptr != bitmap.get()); | 66 SkASSERT(nullptr != bitmap.get()); |
67 } | 67 } |
68 } | 68 } |
OLD | NEW |