forked from revery-ui/esy-skia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CodecBench.h
41 lines (36 loc) · 1.04 KB
/
CodecBench.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* 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 "SkAutoMalloc.h"
#include "SkData.h"
#include "SkImageInfo.h"
#include "SkRefCnt.h"
#include "SkString.h"
/**
* Time SkCodec.
*/
class CodecBench : public Benchmark {
public:
// Calls encoded->ref()
CodecBench(SkString basename, SkData* encoded, SkColorType colorType, SkAlphaType alphaType);
protected:
const char* onGetName() override;
bool isSuitableFor(Backend backend) override;
void onDraw(int n, SkCanvas* canvas) override;
void onDelayedSetup() override;
private:
SkString fName;
const SkColorType fColorType;
const SkAlphaType fAlphaType;
sk_sp<SkData> fData;
SkImageInfo fInfo; // Set in onDelayedSetup.
SkAutoMalloc fPixelStorage;
typedef Benchmark INHERITED;
};
#endif // CodecBench_DEFINED