Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(382)

Unified Diff: bench/SkGlyphCacheBench.cpp

Issue 1348883002: Font cache stress test. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: clean up and parameterize Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bench/SkGlyphCacheBench.cpp
diff --git a/bench/SkGlyphCacheBench.cpp b/bench/SkGlyphCacheBench.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..1ad1b3bf4a7f72396f1fbc0ee3cbf5631d6b4e4e
--- /dev/null
+++ b/bench/SkGlyphCacheBench.cpp
@@ -0,0 +1,117 @@
+/*
+ * 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 "SkGlyphCache.h"
+
+#include "Benchmark.h"
+#include "SkCanvas.h"
+#include "SkGlyphCache_Globals.h"
+#include "SkGraphics.h"
+#include "SkTaskGroup.h"
+#include "SkTypeface.h"
+#include "sk_tool_utils.h"
+
+
+static void DoFontStuff(SkPaint* paint) {
mtklein 2015/09/17 19:38:08 do_font_stuff
+ for (int i = 8; i < 64; i++) {
+ paint->setTextSize(i);
+ SkAutoGlyphCacheNoGamma autoCache(*paint, nullptr, nullptr);
+ SkGlyphCache* cache = autoCache.getCache();
+ uint16_t glyphs['z'];
+ for (int c = ' '; c < 'z'; c++) {
+ glyphs[c] = cache->unicharToGlyph(c);
+ }
+ for (int lookups = 0; lookups < 10; lookups++) {
+ for (int c = ' '; c < 'z'; c++) {
+ const SkGlyph& g = cache->getGlyphIDMetrics(glyphs[c]);
+ cache->findImage(g);
+ }
+ }
+
+ }
+}
+
+class SkGlyphCacheBasic : public Benchmark {
+public:
+ explicit SkGlyphCacheBasic(size_t cacheSize) : fCacheSize(cacheSize) { }
+
+protected:
+ const char* onGetName() override {
+ fName.printf("SkGlyphCacheBasic%dK", fCacheSize >> 10);
+ return fName.c_str();
+ }
+
+ bool isSuitableFor(Backend backend) override {
+ return backend == kNonRendering_Backend;
+ }
+
+ void onDraw(const int loops, SkCanvas*) override {
+ size_t oldCacheLimitSize = SkGraphics::GetFontCacheLimit();
+ SkGraphics::SetFontCacheLimit(256 * 1024);
+ SkTypeface* typeface = sk_tool_utils::create_portable_typeface(
+ "serif", SkTypeface::kItalic);
+ SkPaint paint;
+ paint.setAntiAlias(true);
+ paint.setSubpixelText(true);
+ paint.setTypeface(typeface);
+
+ for (int work = 0; work < loops; work++) {
+ DoFontStuff(&paint);
+ }
+ SkGraphics::SetFontCacheLimit(oldCacheLimitSize);
+ }
+
+private:
+ typedef Benchmark INHERITED;
+ const int fCacheSize;
+ SkString fName;
+};
+
+class SkGlyphCacheStressTest : public Benchmark {
+public:
+ explicit SkGlyphCacheStressTest(int cacheSize) : fCacheSize(cacheSize) { }
+
+protected:
+ const char* onGetName() override {
+ fName.printf("SkGlyphCacheStressTest%dK", fCacheSize >> 10);
+ return fName.c_str();
+ }
+
+ bool isSuitableFor(Backend backend) override {
+ return backend == kNonRendering_Backend;
+ }
+
+ void onDraw(const int loops, SkCanvas*) override {
+ size_t oldCacheLimitSize = SkGraphics::GetFontCacheLimit();
+ SkGraphics::SetFontCacheLimit(fCacheSize);
+ SkTypeface* typefaces[] =
+ {sk_tool_utils::create_portable_typeface("serif", SkTypeface::kItalic),
+ sk_tool_utils::create_portable_typeface("sans-serif", SkTypeface::kItalic)};
+
+ for (int work = 0; work < loops; work++) {
+ sk_parallel_for(16, [&](int threadIndex) {
+ SkPaint paint;
+ paint.setAntiAlias(true);
+ paint.setSubpixelText(true);
+ paint.setTypeface(typefaces[threadIndex % 2]);
+ DoFontStuff(&paint);
+ });
+ }
+ SkGraphics::SetFontCacheLimit(oldCacheLimitSize);
+ }
+
+private:
+ typedef Benchmark INHERITED;
+ const int fCacheSize;
+ SkString fName;
+};
+
+DEF_BENCH( return new SkGlyphCacheBasic(256 * 1024); )
+DEF_BENCH( return new SkGlyphCacheBasic(32 * 1024 * 1024); )
+DEF_BENCH( return new SkGlyphCacheStressTest(256 * 1024); )
+DEF_BENCH( return new SkGlyphCacheStressTest(32 * 1024 * 1024); )
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698