| * 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 |
| class CodecBench : public Benchmark { |
| CodecBench(SkString basename, SkData* encoded, SkColorType colorType, SkAlphaType alphaType); |
| const char* onGetName() override; |
| bool isSuitableFor(Backend backend) override; |
| void onDraw(int n, SkCanvas* canvas) override; |
| void onDelayedSetup() override; |
| const SkColorType fColorType; |
| const SkAlphaType fAlphaType; |
| SkAutoTUnref<SkData> fData; |
| SkImageInfo fInfo; // Set in onDelayedSetup. |
| SkAutoMalloc fPixelStorage; |
| typedef Benchmark INHERITED; |
| #endif // CodecBench_DEFINED |