d3ebb48320
TBR=reed@google.com Verbal lgtm, does not change API. Committed: https://skia.googlesource.com/skia/+/7403d87db8e43d4c2b5b25ac22a0ebc22bd09d69 Review URL: https://codereview.chromium.org/1265033002
64 lines
1.7 KiB
C++
64 lines
1.7 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 SKPBench_DEFINED
|
|
#define SKPBench_DEFINED
|
|
|
|
#include "Benchmark.h"
|
|
#include "SkCanvas.h"
|
|
#include "SkPicture.h"
|
|
#include "SkTDArray.h"
|
|
|
|
class SkSurface;
|
|
|
|
/**
|
|
* Runs an SkPicture as a benchmark by repeatedly drawing it scaled inside a device clip.
|
|
*/
|
|
class SKPBench : public Benchmark {
|
|
public:
|
|
SKPBench(const char* name, const SkPicture*, const SkIRect& devClip, SkScalar scale,
|
|
bool useMultiPictureDraw, bool doLooping);
|
|
~SKPBench() override;
|
|
|
|
int calculateLoops(int defaultLoops) const override {
|
|
return fDoLooping ? defaultLoops : 1;
|
|
}
|
|
|
|
protected:
|
|
const char* onGetName() override;
|
|
const char* onGetUniqueName() override;
|
|
void onPerCanvasPreDraw(SkCanvas*) override;
|
|
void onPerCanvasPostDraw(SkCanvas*) override;
|
|
bool isSuitableFor(Backend backend) override;
|
|
void onDraw(const int loops, SkCanvas* canvas) override;
|
|
SkIPoint onGetSize() override;
|
|
|
|
virtual void drawMPDPicture();
|
|
virtual void drawPicture();
|
|
|
|
const SkPicture* picture() const { return fPic; }
|
|
const SkTDArray<SkSurface*>& surfaces() const { return fSurfaces; }
|
|
const SkTDArray<SkIRect>& tileRects() const { return fTileRects; }
|
|
|
|
private:
|
|
SkAutoTUnref<const SkPicture> fPic;
|
|
const SkIRect fClip;
|
|
const SkScalar fScale;
|
|
SkString fName;
|
|
SkString fUniqueName;
|
|
|
|
const bool fUseMultiPictureDraw;
|
|
SkTDArray<SkSurface*> fSurfaces; // for MultiPictureDraw
|
|
SkTDArray<SkIRect> fTileRects; // for MultiPictureDraw
|
|
|
|
const bool fDoLooping;
|
|
|
|
typedef Benchmark INHERITED;
|
|
};
|
|
|
|
#endif
|