Skip to content
This repository has been archived by the owner on Feb 25, 2025. It is now read-only.

Commit

Permalink
add bench for cubicmap
Browse files Browse the repository at this point in the history
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
reed-at-google authored and Skia Commit-Bot committed Aug 15, 2018
1 parent e49966c commit cf7258a
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
51 changes: 51 additions & 0 deletions bench/CubicMapBench.cpp
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}); )
1 change: 1 addition & 0 deletions gn/bench.gni
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ bench_sources = [
"$_bench/ControlBench.cpp",
"$_bench/CoverageBench.cpp",
"$_bench/CubicKLMBench.cpp",
"$_bench/CubicMapBench.cpp",
"$_bench/DashBench.cpp",
"$_bench/DisplacementBench.cpp",
"$_bench/DrawBitmapAABench.cpp",
Expand Down

0 comments on commit cf7258a

Please sign in to comment.