OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2015 Google Inc. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. |
| 6 */ |
| 7 |
| 8 #include "BitmapRegionDecoderBench.h" |
| 9 #include "CodecBenchPriv.h" |
| 10 #include "SkBitmap.h" |
| 11 #include "SkCodecTools.h" |
| 12 #include "SkOSFile.h" |
| 13 |
| 14 BitmapRegionDecoderBench::BitmapRegionDecoderBench(const char* baseName, SkData*
encoded, |
| 15 SkBitmapRegionDecoderInterface::Strategy strategy, SkColorType colorType
, |
| 16 uint32_t sampleSize, const SkIRect& subset) |
| 17 : fBRD(nullptr) |
| 18 , fData(SkRef(encoded)) |
| 19 , fStrategy(strategy) |
| 20 , fColorType(colorType) |
| 21 , fSampleSize(sampleSize) |
| 22 , fSubset(subset) |
| 23 { |
| 24 // Choose a useful name for the region decoding strategy |
| 25 const char* strategyName; |
| 26 switch (strategy) { |
| 27 case SkBitmapRegionDecoderInterface::kOriginal_Strategy: |
| 28 strategyName = "Original"; |
| 29 break; |
| 30 case SkBitmapRegionDecoderInterface::kCanvas_Strategy: |
| 31 strategyName = "Canvas"; |
| 32 break; |
| 33 default: |
| 34 SkASSERT(false); |
| 35 strategyName = ""; |
| 36 break; |
| 37 } |
| 38 |
| 39 // Choose a useful name for the color type |
| 40 const char* colorName = color_type_to_str(colorType); |
| 41 |
| 42 fName.printf("BRD_%s_%s_%s", baseName, strategyName, colorName); |
| 43 if (1 != sampleSize) { |
| 44 fName.appendf("_%.3f", get_scale_from_sample_size(sampleSize)); |
| 45 } |
| 46 } |
| 47 |
| 48 const char* BitmapRegionDecoderBench::onGetName() { |
| 49 return fName.c_str(); |
| 50 } |
| 51 |
| 52 bool BitmapRegionDecoderBench::isSuitableFor(Backend backend) { |
| 53 return kNonRendering_Backend == backend; |
| 54 } |
| 55 |
| 56 void BitmapRegionDecoderBench::onPreDraw() { |
| 57 SkStreamRewindable* stream = new SkMemoryStream(fData); |
| 58 fBRD.reset(SkBitmapRegionDecoderInterface::CreateBitmapRegionDecoder(stream,
fStrategy)); |
| 59 } |
| 60 |
| 61 void BitmapRegionDecoderBench::onDraw(const int n, SkCanvas* canvas) { |
| 62 SkAutoTDelete<SkBitmap> bitmap; |
| 63 for (int i = 0; i < n; i++) { |
| 64 bitmap.reset(fBRD->decodeRegion(fSubset.left(), fSubset.top(), fSubset.w
idth(), |
| 65 fSubset.height(), fSampleSize, fColorType)); |
| 66 SkASSERT(nullptr != bitmap.get()); |
| 67 } |
| 68 } |
OLD | NEW |