blob: 092693619bb8be5796a9de50be373dde4e9eb186 [file] [log] [blame]
msarett7f691442015-09-22 11:56:16 -07001/*
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
14BitmapRegionDecoderBench::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;
msarett26ad17b2015-10-22 07:29:19 -070033 case SkBitmapRegionDecoderInterface::kAndroidCodec_Strategy:
34 strategyName = "AndroidCodec";
35 break;
msarett7f691442015-09-22 11:56:16 -070036 default:
37 SkASSERT(false);
38 strategyName = "";
39 break;
40 }
41
42 // Choose a useful name for the color type
43 const char* colorName = color_type_to_str(colorType);
44
45 fName.printf("BRD_%s_%s_%s", baseName, strategyName, colorName);
46 if (1 != sampleSize) {
47 fName.appendf("_%.3f", get_scale_from_sample_size(sampleSize));
48 }
49}
50
51const char* BitmapRegionDecoderBench::onGetName() {
52 return fName.c_str();
53}
54
55bool BitmapRegionDecoderBench::isSuitableFor(Backend backend) {
56 return kNonRendering_Backend == backend;
57}
58
joshualitt8a6697a2015-09-30 12:11:07 -070059void BitmapRegionDecoderBench::onDelayedSetup() {
msarett26ad17b2015-10-22 07:29:19 -070060 fBRD.reset(SkBitmapRegionDecoderInterface::CreateBitmapRegionDecoder(fData, fStrategy));
msarett7f691442015-09-22 11:56:16 -070061}
62
mtkleina1ebeb22015-10-01 09:43:39 -070063void BitmapRegionDecoderBench::onDraw(int n, SkCanvas* canvas) {
msarett7f691442015-09-22 11:56:16 -070064 SkAutoTDelete<SkBitmap> bitmap;
65 for (int i = 0; i < n; i++) {
66 bitmap.reset(fBRD->decodeRegion(fSubset.left(), fSubset.top(), fSubset.width(),
67 fSubset.height(), fSampleSize, fColorType));
68 SkASSERT(nullptr != bitmap.get());
69 }
70}