mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2014 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 | #ifndef SKPBench_DEFINED |
| 9 | #define SKPBench_DEFINED |
| 10 | |
| 11 | #include "Benchmark.h" |
| 12 | #include "SkCanvas.h" |
| 13 | #include "SkPicture.h" |
| 14 | |
| 15 | /** |
| 16 | * Runs an SkPicture as a benchmark by repeatedly drawing it scaled inside a device clip. |
| 17 | */ |
| 18 | class SKPBench : public Benchmark { |
| 19 | public: |
| 20 | SKPBench(const char* name, const SkPicture*, const SkIRect& devClip, SkScalar scale); |
| 21 | |
| 22 | protected: |
| 23 | virtual const char* onGetName() SK_OVERRIDE; |
| 24 | virtual bool isSuitableFor(Backend backend) SK_OVERRIDE; |
| 25 | virtual void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE; |
| 26 | virtual SkIPoint onGetSize() SK_OVERRIDE; |
| 27 | |
| 28 | private: |
| 29 | SkAutoTUnref<const SkPicture> fPic; |
| 30 | const SkIRect fClip; |
| 31 | const SkScalar fScale; |
| 32 | SkString fName; |
| 33 | |
| 34 | typedef Benchmark INHERITED; |
| 35 | }; |
| 36 | |
| 37 | #endif |