Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(560)

Side by Side Diff: bench/subset/SubsetZoomBench.h

Issue 1531833002: Remove Subset*Benches (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « bench/subset/SubsetTranslateBench.cpp ('k') | bench/subset/SubsetZoomBench.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
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 * Choose subsets to mimic a user zooming in or out on a photo.
18 *
19 */
20 class SubsetZoomBench : public Benchmark {
21 public:
22
23 SubsetZoomBench(const SkString& path,
24 SkColorType colorType,
25 uint32_t subsetWidth,
26 uint32_t subsetHeight);
27
28 protected:
29 const char* onGetName() override;
30 bool isSuitableFor(Backend backend) override;
31 void onDraw(int n, SkCanvas* canvas) override;
32
33 private:
34 SkString fName;
35 SkColorType fColorType;
36 const uint32_t fSubsetWidth;
37 const uint32_t fSubsetHeight;
38 SkAutoTDelete<SkMemoryStream> fStream;
39 typedef Benchmark INHERITED;
40 };
OLDNEW
« no previous file with comments | « bench/subset/SubsetTranslateBench.cpp ('k') | bench/subset/SubsetZoomBench.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698