skia2/bench/TextBlobBench.cpp
Mike Klein c0bd9f9fe5 rewrite includes to not need so much -Ifoo
Current strategy: everything from the top

Things to look at first are the manual changes:

   - added tools/rewrite_includes.py
   - removed -Idirectives from BUILD.gn
   - various compile.sh simplifications
   - tweak tools/embed_resources.py
   - update gn/find_headers.py to write paths from the top
   - update gn/gn_to_bp.py SkUserConfig.h layout
     so that #include "include/config/SkUserConfig.h" always
     gets the header we want.

No-Presubmit: true
Change-Id: I73a4b181654e0e38d229bc456c0d0854bae3363e
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/209706
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Hal Canary <halcanary@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
Reviewed-by: Florin Malita <fmalita@chromium.org>
2019-04-24 16:27:11 +00:00

112 lines
3.3 KiB
C++

/*
* Copyright 2015 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "bench/Benchmark.h"
#include "include/core/SkCanvas.h"
#include "include/core/SkFont.h"
#include "include/core/SkPaint.h"
#include "include/core/SkStream.h"
#include "include/core/SkString.h"
#include "include/core/SkTextBlob.h"
#include "include/core/SkTypeface.h"
#include "include/private/SkTemplates.h"
#include "include/utils/SkRandom.h"
#include "tools/Resources.h"
#include "tools/ToolUtils.h"
/*
* A trivial test which benchmarks the performance of a textblob with a single run.
*/
class SkTextBlobBench : public Benchmark {
public:
SkTextBlobBench() {}
void onDelayedSetup() override {
fFont.setTypeface(ToolUtils::create_portable_typeface("serif", SkFontStyle()));
fFont.setSubpixel(true);
// This text seems representative in both length and letter frequency.
const char* text = "Keep your sentences short, but not overly so.";
fGlyphs.setCount(fFont.countText(text, strlen(text), kUTF8_SkTextEncoding));
fXPos.setCount(fGlyphs.count());
fFont.textToGlyphs(text, strlen(text), kUTF8_SkTextEncoding, fGlyphs.begin(), fGlyphs.count());
fFont.getXPos(&fGlyphs[0], fGlyphs.count(), fXPos.begin());
}
sk_sp<SkTextBlob> makeBlob() {
const SkTextBlobBuilder::RunBuffer& run =
fBuilder.allocRunPosH(fFont, fGlyphs.count(), 10, nullptr);
memcpy(run.glyphs, &fGlyphs[0], fGlyphs.count() * sizeof(uint16_t));
memcpy(run.pos, &fXPos[0], fXPos.count() * sizeof(SkScalar));
return fBuilder.make();
}
private:
SkTextBlobBuilder fBuilder;
SkFont fFont;
SkTDArray<uint16_t> fGlyphs;
SkTDArray<SkScalar> fXPos;
typedef Benchmark INHERITED;
};
class TextBlobCachedBench : public SkTextBlobBench {
const char* onGetName() override {
return "TextBlobCachedBench";
}
void onDraw(int loops, SkCanvas* canvas) override {
SkPaint paint;
auto blob = this->makeBlob();
auto bigLoops = loops * 100;
for (int i = 0; i < bigLoops; i++) {
// To ensure maximum caching, we just redraw the blob at the same place everytime
canvas->drawTextBlob(blob, 0, 0, paint);
}
}
};
DEF_BENCH( return new TextBlobCachedBench(); )
class TextBlobFirstTimeBench : public SkTextBlobBench {
const char* onGetName() override {
return "TextBlobFirstTimeBench";
}
void onDraw(int loops, SkCanvas* canvas) override {
SkPaint paint;
auto bigLoops = loops * 100;
for (int i = 0; i < bigLoops; i++) {
canvas->drawTextBlob(this->makeBlob(), 0, 0, paint);
}
}
};
DEF_BENCH( return new TextBlobFirstTimeBench(); )
class TextBlobMakeBench : public SkTextBlobBench {
const char* onGetName() override {
return "TextBlobMakeBench";
}
bool isSuitableFor(Backend backend) override {
return backend == kNonRendering_Backend;
}
void onDraw(int loops, SkCanvas*) override {
for (int i = 0; i < loops; i++) {
for (int inner = 0; inner < 1000; ++inner) {
this->makeBlob();
}
}
}
};
DEF_BENCH( return new TextBlobMakeBench(); )