7571f9e490
Mechanically updated via Xcode "Replace Regular Expression": typedef (.*) INHERITED; --> using INHERITED = $1; The ClangTidy approach generated an even larger CL which would have required a significant amount of hand-tweaking to be usable. Change-Id: I671dc9d9efdf6d60151325c8d4d13fad7e10a15b Reviewed-on: https://skia-review.googlesource.com/c/skia/+/314999 Commit-Queue: Mike Klein <mtklein@google.com> Reviewed-by: Mike Klein <mtklein@google.com> Auto-Submit: John Stiles <johnstiles@google.com>
42 lines
1.0 KiB
C++
42 lines
1.0 KiB
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 "bench/Benchmark.h"
|
|
#include "gm/gm.h"
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
/**
|
|
* Runs a GM as a benchmark by repeatedly drawing the GM.
|
|
*/
|
|
class GMBench : public Benchmark {
|
|
public:
|
|
GMBench(std::unique_ptr<skiagm::GM> gm);
|
|
|
|
void modifyGrContextOptions(GrContextOptions* options) override {
|
|
return fGM->modifyGrContextOptions(options);
|
|
}
|
|
|
|
protected:
|
|
const char* onGetName() override;
|
|
bool isSuitableFor(Backend backend) override;
|
|
void onPerCanvasPreDraw(SkCanvas*) override;
|
|
void onPerCanvasPostDraw(SkCanvas*) override;
|
|
void onDraw(int loops, SkCanvas*) override;
|
|
SkIPoint onGetSize() override;
|
|
|
|
private:
|
|
std::unique_ptr<skiagm::GM> fGM;
|
|
SkString fName;
|
|
bool fGpuSetupFailed = false;
|
|
|
|
using INHERITED = Benchmark;
|
|
};
|
|
|
|
#endif
|