| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright 2015 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 | |
| 9 #ifndef CpuWrappedBenchmark_DEFINED | |
| 10 #define CpuWrappedBenchmark_DEFINED | |
| 11 | |
| 12 #include "Benchmark.h" | |
| 13 #include "SkSurface.h" | |
| 14 | |
| 15 class CpuWrappedBenchmark : public Benchmark { | |
| 16 public: | |
| 17 // Takes ownership of caller's ref on `bench`. | |
| 18 explicit CpuWrappedBenchmark(Benchmark* bench) : fBench(bench) {} | |
| 19 | |
| 20 const char* onGetName() override { return fBench->getName(); } | |
| 21 const char* onGetUniqueName() override { return fBench->getUniqueName(); } | |
| 22 | |
| 23 void onDelayedSetup() override { fBench->delayedSetup(); } | |
| 24 void onPerCanvasPreDraw(SkCanvas* canvas) override { fBench->perCanvasPreDra
w(canvas); } | |
| 25 void onPreDraw(SkCanvas* canvas) override { fBench->preDraw(canvas); } | |
| 26 void onPostDraw(SkCanvas* canvas) override { fBench->postDraw(canvas); } | |
| 27 void onPerCanvasPostDraw(SkCanvas* canvas) override { fBench->perCanvasPostD
raw(canvas); } | |
| 28 | |
| 29 void onDraw(int loops, SkCanvas* canvas) override { | |
| 30 // TODO: use onPreDraw() to move offscreen allocation/deallocation out o
f timing. | |
| 31 SkAutoTUnref<SkSurface> offscreen(SkSurface::NewRaster(canvas->imageInfo
())); | |
| 32 | |
| 33 fBench->draw(loops, offscreen->getCanvas()); | |
| 34 SkAutoTUnref<SkImage> image(offscreen->newImageSnapshot()); | |
| 35 canvas->drawImage(image, 0,0); | |
| 36 } | |
| 37 | |
| 38 virtual SkIPoint onGetSize() override { return fBench->getSize(); } | |
| 39 | |
| 40 private: | |
| 41 SkAutoTUnref<Benchmark> fBench; | |
| 42 }; | |
| 43 | |
| 44 #endif//CpuWrappedBenchmark_DEFINED | |
| OLD | NEW |