2015-04-01 19:09:17 +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 CodecBench_DEFINED
|
|
|
|
#define CodecBench_DEFINED
|
|
|
|
|
|
|
|
#include "Benchmark.h"
|
|
|
|
#include "SkData.h"
|
|
|
|
#include "SkImageInfo.h"
|
|
|
|
#include "SkRefCnt.h"
|
|
|
|
#include "SkString.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Time SkCodec.
|
|
|
|
*/
|
|
|
|
class CodecBench : public Benchmark {
|
|
|
|
public:
|
|
|
|
// Calls encoded->ref()
|
2016-01-07 22:20:20 +00:00
|
|
|
CodecBench(SkString basename, SkData* encoded, SkColorType colorType, SkAlphaType alphaType);
|
2015-04-01 19:09:17 +00:00
|
|
|
|
|
|
|
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-04-01 19:09:17 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
SkString fName;
|
|
|
|
const SkColorType fColorType;
|
2016-01-07 22:20:20 +00:00
|
|
|
const SkAlphaType fAlphaType;
|
2015-04-01 19:09:17 +00:00
|
|
|
SkAutoTUnref<SkData> fData;
|
2016-01-07 22:20:20 +00:00
|
|
|
SkImageInfo fInfo; // Set in onDelayedSetup.
|
2015-04-02 20:22:38 +00:00
|
|
|
SkAutoMalloc fPixelStorage;
|
2015-04-01 19:09:17 +00:00
|
|
|
typedef Benchmark INHERITED;
|
|
|
|
};
|
|
|
|
#endif // CodecBench_DEFINED
|