blob: 925a87583c12683e93b41f190aa0d2d375a6aeb3 [file] [log] [blame]
commit-bot@chromium.org6adce672014-02-03 14:48:17 +00001/*
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#include "SkBenchmark.h"
9#include "gm.h"
10#include "SkCanvas.h"
11
12/**
13 * Runs a GM as a benchmark by repeatedly drawing the GM.
14 */
15class SkGMBench : public SkBenchmark {
16public:
17 // Constructor takes ownership of the GM param.
18 SkGMBench(skiagm::GM* gm);
19 virtual ~SkGMBench();
20
21protected:
22 virtual const char* onGetName() SK_OVERRIDE;
23 virtual bool isSuitableFor(Backend backend) SK_OVERRIDE;
24 virtual void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE;
25 virtual SkIPoint onGetSize() SK_OVERRIDE;
26
27private:
28 skiagm::GM* fGM;
29 SkString fName;
30 typedef SkBenchmark INHERITED;
31};