blob: 0675cca22a6ea8bb5e6dfb43f9c9ffaa88750854 [file] [log] [blame]
scroggo60869a42015-04-01 12:09:17 -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#ifndef CodecBench_DEFINED
9#define CodecBench_DEFINED
10
11#include "Benchmark.h"
scroggo60869a42015-04-01 12:09:17 -070012#include "SkData.h"
13#include "SkImageInfo.h"
14#include "SkRefCnt.h"
15#include "SkString.h"
16
17/**
18 * Time SkCodec.
19 */
20class CodecBench : public Benchmark {
21public:
22 // Calls encoded->ref()
23 CodecBench(SkString basename, SkData* encoded, SkColorType colorType);
24
25protected:
26 const char* onGetName() override;
27 bool isSuitableFor(Backend backend) override;
28 void onDraw(const int n, SkCanvas* canvas) override;
29 void onPreDraw() override;
30
31private:
32 SkString fName;
33 const SkColorType fColorType;
34 SkAutoTUnref<SkData> fData;
scroggo21027992015-04-02 13:22:38 -070035 SkImageInfo fInfo; // Set in onPreDraw.
36 SkAutoMalloc fPixelStorage;
scroggo60869a42015-04-01 12:09:17 -070037 typedef Benchmark INHERITED;
38};
39#endif // CodecBench_DEFINED