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

Unified Diff: bench/nanobench.cpp

Issue 669983002: Draw SKPs in 256x256 tiles in nanobench. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: int -> float Created 6 years, 2 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 | « bench/SKPBench.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bench/nanobench.cpp
diff --git a/bench/nanobench.cpp b/bench/nanobench.cpp
index 250f438d6ac4e31c8f8f0941e0e1dfa7710640dc..2758528a9624448c52b61d5898d064e067e7d759 100644
--- a/bench/nanobench.cpp
+++ b/bench/nanobench.cpp
@@ -70,6 +70,7 @@ DEFINE_int32(maxLoops, 1000000, "Never run a bench more times than this.");
DEFINE_string(clip, "0,0,1000,1000", "Clip for SKPs.");
DEFINE_string(scales, "1.0", "Space-separated scales for SKPs.");
DEFINE_bool(bbh, true, "Build a BBH for SKPs?");
+DEFINE_int32(benchTile, 256, "Tile dimension used for SKP playback.");
DEFINE_int32(flushEvery, 10, "Flush --outResultsFile every Nth run.");
static SkString humanize(double ms) {
@@ -514,11 +515,10 @@ public:
}
if (FLAGS_bbh) {
// The SKP we read off disk doesn't have a BBH. Re-record so it grows one.
- // Here we use an SkTileGrid with parameters optimized for FLAGS_clip.
const SkTileGridFactory::TileGridInfo info = {
- SkISize::Make(fClip.width(), fClip.height()), // tile interval
- SkISize::Make(0,0), // margin
- SkIPoint::Make(fClip.left(), fClip.top()), // offset
+ SkISize::Make(FLAGS_benchTile, FLAGS_benchTile), // tile interval
+ SkISize::Make(0,0), // margin
+ SkIPoint::Make(0,0), // offset
};
SkTileGridFactory factory(info);
SkPictureRecorder recorder;
« no previous file with comments | « bench/SKPBench.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698