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
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "bench/Benchmark.h"
|
2020-05-04 14:02:45 +00:00
|
|
|
#ifdef SK_ENABLE_ANDROID_UTILS
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkData.h"
|
|
|
|
#include "include/core/SkImageInfo.h"
|
|
|
|
#include "include/core/SkRefCnt.h"
|
|
|
|
#include "include/core/SkString.h"
|
2015-09-22 18:56:16 +00:00
|
|
|
|
2020-05-04 14:02:45 +00:00
|
|
|
namespace android {
|
|
|
|
namespace skia {
|
|
|
|
class BitmapRegionDecoder;
|
2020-08-06 18:11:56 +00:00
|
|
|
} // namespace skia
|
|
|
|
} // namespace android
|
2020-05-04 14:02:45 +00:00
|
|
|
|
2015-09-22 18:56:16 +00:00
|
|
|
/**
|
|
|
|
* 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:
|
2020-05-04 14:02:45 +00:00
|
|
|
SkString fName;
|
|
|
|
std::unique_ptr<android::skia::BitmapRegionDecoder> fBRD;
|
|
|
|
sk_sp<SkData> fData;
|
|
|
|
const SkColorType fColorType;
|
|
|
|
const uint32_t fSampleSize;
|
|
|
|
const SkIRect fSubset;
|
2015-09-22 18:56:16 +00:00
|
|
|
typedef Benchmark INHERITED;
|
|
|
|
};
|
2020-05-04 14:02:45 +00:00
|
|
|
#endif // SK_ENABLE_ANDROID_UTILS
|
2015-09-22 18:56:16 +00:00
|
|
|
#endif // BitmapRegionDecoderBench_DEFINED
|