blob: 62e281ad67ec22c3d9e1619124eaab33fbd1107f [file] [log] [blame]
msarettb23e6aa2015-06-09 13:56:10 -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#include "Benchmark.h"
9#include "SkImageDecoder.h"
10#include "SkImageInfo.h"
11#include "SkStream.h"
12#include "SkString.h"
13
14/*
15 *
16 * This benchmark is designed to test the performance of subset decoding.
17 * It uses an input width, height, left, and top to decode a single subset.
18 *
19 */
20class SubsetSingleBench : public Benchmark {
21public:
22
23 SubsetSingleBench(const SkString& path,
24 SkColorType colorType,
25 uint32_t subsetWidth,
26 uint32_t subsetHeight,
27 uint32_t offsetLeft,
28 uint32_t offsetTop,
29 bool useCodec);
30
31protected:
32 const char* onGetName() override;
33 bool isSuitableFor(Backend backend) override;
mtkleina1ebeb22015-10-01 09:43:39 -070034 void onDraw(int n, SkCanvas* canvas) override;
msarettb23e6aa2015-06-09 13:56:10 -070035
36private:
37 SkString fName;
38 SkColorType fColorType;
39 const uint32_t fSubsetWidth;
40 const uint32_t fSubsetHeight;
41 const uint32_t fOffsetLeft;
42 const uint32_t fOffsetTop;
43 const bool fUseCodec;
44 SkAutoTDelete<SkMemoryStream> fStream;
45 typedef Benchmark INHERITED;
46};