blob: 9cc91928204dbb8d4cf3fe2af502bd19d217356f [file] [log] [blame]
mtklein92007582014-08-01 07:46:52 -07001/*
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 */
18class SKPBench : public Benchmark {
19public:
20 SKPBench(const char* name, const SkPicture*, const SkIRect& devClip, SkScalar scale);
21
22protected:
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
28private:
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