skia2/bench/GMBench.h
mtklein 72c9faab45 Fix up all the easy virtual ... SK_OVERRIDE cases.
This fixes every case where virtual and SK_OVERRIDE were on the same line,
which should be the bulk of cases.  We'll have to manually clean up the rest
over time unless I level up in regexes.

for f in (find . -type f); perl -p -i -e 's/virtual (.*)SK_OVERRIDE/\1SK_OVERRIDE/g' $f; end

BUG=skia:

Review URL: https://codereview.chromium.org/806653007
2015-01-09 10:06:40 -08:00

36 lines
775 B
C++

/*
* Copyright 2014 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GMBench_DEFINED
#define GMBench_DEFINED
#include "Benchmark.h"
#include "SkCanvas.h"
#include "gm.h"
/**
* Runs a GM as a benchmark by repeatedly drawing the GM.
*/
class GMBench : public Benchmark {
public:
// Constructor takes ownership of the GM param.
GMBench(skiagm::GM* gm);
virtual ~GMBench();
protected:
const char* onGetName() SK_OVERRIDE;
bool isSuitableFor(Backend backend) SK_OVERRIDE;
void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE;
SkIPoint onGetSize() SK_OVERRIDE;
private:
skiagm::GM* fGM;
SkString fName;
typedef Benchmark INHERITED;
};
#endif