This repository has been archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug: skia: Change-Id: Ie88de751e6f889eed02fba1d13e712345256ac72 Reviewed-on: https://skia-review.googlesource.com/147210 Reviewed-by: Florin Malita <fmalita@chromium.org> Commit-Queue: Mike Reed <reed@google.com>
- Loading branch information
1 parent
e49966c
commit cf7258a
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Copyright 2018 Google Inc. | ||
* | ||
* Use of this source code is governed by a BSD-style license that can be | ||
* found in the LICENSE file. | ||
*/ | ||
|
||
#include "Benchmark.h" | ||
#include "SkCubicMap.h" | ||
|
||
class CubicMapBench : public Benchmark { | ||
public: | ||
CubicMapBench(SkPoint p1, SkPoint p2) : fCMap(p1, p2) { | ||
fName.printf("cubicmap_%g_%g_%g_%g", p1.fX, p1.fY, p2.fX, p2.fY); | ||
} | ||
|
||
bool isSuitableFor(Backend backend) override { | ||
return backend == kNonRendering_Backend; | ||
} | ||
|
||
const char* onGetName() override { | ||
return fName.c_str(); | ||
} | ||
|
||
void onDraw(int loops, SkCanvas*) override { | ||
for (int i = 0; i < loops * 100; ++i) { | ||
for (SkScalar x = 0; x <= 1; x += 1.0f / 512) { | ||
fCMap.computeYFromX(x); | ||
} | ||
} | ||
} | ||
|
||
private: | ||
SkCubicMap fCMap; | ||
SkString fName; | ||
|
||
typedef Benchmark INHERITED; | ||
}; | ||
|
||
DEF_BENCH( return new CubicMapBench({1, 0}, {0,0}); ) | ||
DEF_BENCH( return new CubicMapBench({1, 0}, {0,1}); ) | ||
DEF_BENCH( return new CubicMapBench({1, 0}, {1,0}); ) | ||
DEF_BENCH( return new CubicMapBench({1, 0}, {1,1}); ) | ||
|
||
DEF_BENCH( return new CubicMapBench({0, 1}, {0,0}); ) | ||
DEF_BENCH( return new CubicMapBench({0, 1}, {0,1}); ) | ||
DEF_BENCH( return new CubicMapBench({0, 1}, {1,0}); ) | ||
DEF_BENCH( return new CubicMapBench({0, 1}, {1,1}); ) | ||
|
||
DEF_BENCH( return new CubicMapBench({0, 0}, {1,1}); ) | ||
DEF_BENCH( return new CubicMapBench({1, 1}, {0,0}); ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters