2015-09-22 18:56:16 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2015 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BitmapRegionDecoderBench_DEFINED
|
|
|
|
#define BitmapRegionDecoderBench_DEFINED
|
|
|
|
|
|
|
|
#include "Benchmark.h"
|
2015-11-06 16:56:32 +00:00
|
|
|
#include "SkBitmapRegionDecoder.h"
|
2015-09-22 18:56:16 +00:00
|
|
|
#include "SkData.h"
|
|
|
|
#include "SkImageInfo.h"
|
|
|
|
#include "SkRefCnt.h"
|
|
|
|
#include "SkString.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Benchmark Android's BitmapRegionDecoder for a particular colorType, sampleSize, and subset.
|
|
|
|
*
|
|
|
|
* nanobench.cpp handles creating benchmarks for interesting scaled subsets. We strive to test
|
|
|
|
* on real use cases.
|
|
|
|
*/
|
|
|
|
class BitmapRegionDecoderBench : public Benchmark {
|
|
|
|
public:
|
|
|
|
// Calls encoded->ref()
|
2016-05-18 13:23:57 +00:00
|
|
|
BitmapRegionDecoderBench(const char* basename, SkData* encoded, SkColorType colorType,
|
2015-09-22 18:56:16 +00:00
|
|
|
uint32_t sampleSize, const SkIRect& subset);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
const char* onGetName() override;
|
|
|
|
bool isSuitableFor(Backend backend) override;
|
2015-10-01 16:43:39 +00:00
|
|
|
void onDraw(int n, SkCanvas* canvas) override;
|
2015-09-30 19:11:07 +00:00
|
|
|
void onDelayedSetup() override;
|
2015-09-22 18:56:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
SkString fName;
|
2016-11-03 18:40:50 +00:00
|
|
|
std::unique_ptr<SkBitmapRegionDecoder> fBRD;
|
2016-08-03 20:32:32 +00:00
|
|
|
sk_sp<SkData> fData;
|
2015-09-22 18:56:16 +00:00
|
|
|
const SkColorType fColorType;
|
|
|
|
const uint32_t fSampleSize;
|
|
|
|
const SkIRect fSubset;
|
|
|
|
typedef Benchmark INHERITED;
|
|
|
|
};
|
|
|
|
#endif // BitmapRegionDecoderBench_DEFINED
|