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

Side by Side Diff: bench/SKPBench.h

Issue 750583002: Revert of Add MultiPictureDraw to nanobench (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 1 month 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/Benchmark.cpp ('k') | bench/SKPBench.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SKPBench_DEFINED 8 #ifndef SKPBench_DEFINED
9 #define SKPBench_DEFINED 9 #define SKPBench_DEFINED
10 10
11 #include "Benchmark.h" 11 #include "Benchmark.h"
12 #include "SkCanvas.h" 12 #include "SkCanvas.h"
13 #include "SkPicture.h" 13 #include "SkPicture.h"
14 14
15 /** 15 /**
16 * Runs an SkPicture as a benchmark by repeatedly drawing it scaled inside a dev ice clip. 16 * Runs an SkPicture as a benchmark by repeatedly drawing it scaled inside a dev ice clip.
17 */ 17 */
18 class SKPBench : public Benchmark { 18 class SKPBench : public Benchmark {
19 public: 19 public:
20 SKPBench(const char* name, const SkPicture*, const SkIRect& devClip, SkScala r scale, 20 SKPBench(const char* name, const SkPicture*, const SkIRect& devClip, SkScala r scale);
21 bool useMultiPictureDraw);
22 ~SKPBench() SK_OVERRIDE;
23 21
24 protected: 22 protected:
25 const char* onGetName() SK_OVERRIDE; 23 virtual const char* onGetName() SK_OVERRIDE;
26 const char* onGetUniqueName() SK_OVERRIDE; 24 virtual const char* onGetUniqueName() SK_OVERRIDE;
27 void onPerCanvasPreDraw(SkCanvas*) SK_OVERRIDE; 25 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE;
28 void onPerCanvasPostDraw(SkCanvas*) SK_OVERRIDE; 26 virtual void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE;
29 bool isSuitableFor(Backend backend) SK_OVERRIDE; 27 virtual SkIPoint onGetSize() SK_OVERRIDE;
30 void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE;
31 SkIPoint onGetSize() SK_OVERRIDE;
32 28
33 private: 29 private:
34 SkAutoTUnref<const SkPicture> fPic; 30 SkAutoTUnref<const SkPicture> fPic;
35 const SkIRect fClip; 31 const SkIRect fClip;
36 const SkScalar fScale; 32 const SkScalar fScale;
37 SkString fName; 33 SkString fName;
38 SkString fUniqueName; 34 SkString fUniqueName;
39 35
40 const bool fUseMultiPictureDraw;
41 SkTDArray<SkSurface*> fSurfaces; // for MultiPictureDraw
42 SkTDArray<SkIRect> fTileRects; // for MultiPictureDraw
43
44 typedef Benchmark INHERITED; 36 typedef Benchmark INHERITED;
45 }; 37 };
46 38
47 #endif 39 #endif
OLDNEW
« no previous file with comments | « bench/Benchmark.cpp ('k') | bench/SKPBench.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698